Interface ReaderSubscription

Represents a Reader subscription.

1.1

interface ReaderSubscription {
    cancel(): void;
}

Methods

Methods

  • Immediately cancel the current subscription. Neither the callback or the error callback will be invoked afterwards.

    Returns void