transferum
    Preparing search index...

    Interface SubscribableTransferInterface<T>

    Subscribable transfer — output transfer that supports reactive subscription via subscribe().

    interface SubscribableTransferInterface<T> {
        isAsyncPollingProxy: boolean;
        isAsyncPullable: boolean;
        isAsyncPushable: boolean;
        isAsyncTriggerable: boolean;
        isDuplex: boolean;
        isGate: boolean;
        isInput: boolean;
        isOutput: true;
        isPollingProxy: boolean;
        isPollingSource: boolean;
        isPullable: boolean;
        isPushable: boolean;
        isSubscribable: true;
        isTriggerable: boolean;
        destroy(): void;
        subscribe(handler: DataHandler<T>): SubscriberInterface;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Implemented by

    Index
    isAsyncPollingProxy: boolean
    isAsyncPullable: boolean
    isAsyncPushable: boolean
    isAsyncTriggerable: boolean
    isDuplex: boolean
    isGate: boolean
    isInput: boolean
    isOutput: true
    isPollingProxy: boolean
    isPollingSource: boolean
    isPullable: boolean
    isPushable: boolean
    isSubscribable: true
    isTriggerable: boolean