transferum
    Preparing search index...

    Interface PollingSourceTransferInterface

    Polling source transfer — fetcher is passed via config at construction time. Output-only (cannot be an input).

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

    Hierarchy (View Summary)

    Implemented by

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