Interface Sub<T>

Basic interface to a Subscription type

Type Parameters

  • T

Hierarchy

  • AsyncIterable<T>
    • Sub

Properties

closed: Promise<void>

A promise that resolves when the subscription closes

Methods

  • Returns AsyncIterator<T, any, undefined>

  • Drain the subscription, closing it after processing all messages currently in flight for the client. Returns a promise that resolves when the subscription finished draining.

    Returns Promise<void>

  • Return the max number of messages before the subscription will unsubscribe.

    Returns number

  • Returns the number of messages that are pending processing. Note that this is method is only valid for iterators.

    Returns number

  • Returns the number of messages that have been processed by the subscription.

    Returns number

  • Returns the number of messages received by the subscription.

    Returns number

  • Returns the subject that was used to create the subscription.

    Returns string

  • Returns true if the subscription is closed.

    Returns boolean

  • Returns true if the subscription is draining.

    Returns boolean

  • Stop the subscription from receiving messages. You can optionally specify that the subscription should stop after the specified number of messages have been received. Note this count is since the lifetime of the subscription.

    Parameters

    • Optional max: number

    Returns void

Generated using TypeDoc