transferum
    Preparing search index...

    Interface PullableTransferInterface<T>

    Pullable transfer — output transfer that supports synchronous data extraction via pull().

    interface PullableTransferInterface<T> {
        isAsyncPollingProxy: boolean;
        isAsyncPullable: boolean;
        isAsyncPushable: boolean;
        isAsyncTriggerable: boolean;
        isDuplex: boolean;
        isGate: boolean;
        isInput: boolean;
        isOutput: true;
        isPollingProxy: boolean;
        isPollingSource: boolean;
        isPullable: true;
        isPushable: boolean;
        isSubscribable: boolean;
        isTriggerable: boolean;
        destroy(): void;
        pull(): T | undefined;
    }

    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: true
    isPushable: boolean
    isSubscribable: boolean
    isTriggerable: boolean