transferum
    Preparing search index...

    Function createPollingFlowTransfer

    • Creates a PollingFlowTransfer — polling from OutputFlowInterface (e.g., Storage).

      Capabilities: Pullable, Subscribable, Triggerable, Gate

      Type Parameters

      • T

      Parameters

      Returns ExplicitTransfer<T, T>

      const polling = createPollingFlowTransfer<number>({
      flow: storage,
      interval: 1000,
      activated: true
      });
      polling.subscribe(x => console.log(x));