transferum
    Preparing search index...

    Interface AsyncPollingProxyTransferInterface<T>

    Async polling proxy transfer — input transfer that supports async polling of an upstream transfer via setAsyncFetcher/clearAsyncFetcher.

    interface AsyncPollingProxyTransferInterface<T> {
        active: boolean;
        isAsyncPollingProxy: true;
        isAsyncPullable: boolean;
        isAsyncPushable: boolean;
        isAsyncTriggerable: boolean;
        isDuplex: boolean;
        isGate: boolean;
        isInput: true;
        isOutput: boolean;
        isPollingProxy: boolean;
        isPollingSource: boolean;
        isPullable: boolean;
        isPushable: boolean;
        isSubscribable: boolean;
        isTriggerable: boolean;
        activate(): void;
        clearAsyncFetcher(): void;
        deactivate(): void;
        destroy(): void;
        onStateChange(handler: DataHandler<GateInterface>): SubscriberInterface;
        setAsyncFetcher(fetcher: AsyncDataFetcher<T>): void;
        toggle(): boolean;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Implemented by

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