A promise that resolves when the subscription closes. If the promise resolves to an error, the subscription was closed because of an error typically a permissions error. Note that this promise doesn't reject, but rather resolves to void (no error) or an Error
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.
Return the max number of messages before the subscription will unsubscribe.
Returns the number of messages that are pending processing. Note that this is method is only valid for iterators.
Returns the number of messages that have been processed by the subscription.
Returns the number of messages received by the subscription.
Returns the subject that was used to create the subscription.
Returns true if the subscription is closed.
Returns true if the subscription is draining.
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.
Optional
max: number
Basic interface to a Subscription type