transferum
    Preparing search index...

    Interface PushableTransferInterface<T>

    Pushable transfer — input transfer that supports synchronous data push via push().

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

    Type Parameters

    • T

    Hierarchy (View Summary)

    Implemented by

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