pg-listener API
    Preparing search index...

    Interface IListenConnection

    Connection details, as added by PgListener.listen method into PgListener.connections list.

    interface IListenConnection {
        channels: string[];
        created: Date;
        result: IListenResult;
    }
    Index

    Properties

    channels: string[]

    A list of channels that were passed into PgListener.listen method to create this connection and listen to notifications on those channels.

    created: Date

    Date/time when the connection was added to PgListener.connections list.

    Return result from PgListener.listen method.