transferum
    Preparing search index...

    Interface PollingProxyTransferInterface<T>

    Polling proxy transfer — fetcher is connected from the upstream transfer in the chain. At least an input.

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

    Type Parameters

    • T

    Hierarchy (View Summary)

    Implemented by

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