Visualization
    Preparing search index...

    Interface ReaderSubscription

    Represents a Reader subscription.

    1.1

    interface ReaderSubscription {
        cancel(): void;
        pause(): void;
        resume(): void;
    }
    Index

    Methods

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

      Returns void

    • Temporarily pause the current subscription. Pausing a subscription will prevent any invocations to the render function, while for example allowing the user to perform an area marking operation while holding off streaming data updates.

      Returns void

      2.4

    • Resume the current subscription. Any number of changes to one or more subscribed readable that occurred when the subscription was paused will yield one invocation to the render callback.

      Returns void

      2.4