edgeport - v1.0.3
    Preparing search index...

    Interface PresenceSubscription

    A live presence subscription yielding PresenceNotifications.

    interface PresenceSubscription {
        "[asyncDispose]"(): PromiseLike<void>;
        "[asyncIterator]"(): AsyncIterator<PresenceNotification, any, any>;
        unsubscribe(): Promise<void>;
    }

    Hierarchy

    Index
    • Returns PromiseLike<void>

    • Returns AsyncIterator<PresenceNotification, any, any>

    • Ends the subscription (SUBSCRIBE with Expires: 0).

      Returns Promise<void>