transferum
    Preparing search index...

    Type Alias AsyncStoredChannelTransferConfig<T>

    AsyncStoredChannelTransferConfig: BaseStateTransferConfig<T> & ErrorHandlingConfig<
        AsyncStoredChannelTransfer<T>,
    > & {
        destroy: () => void;
        onDestroyError?: ErrorHandler<AsyncStoredChannelTransfer<T>>;
        setup: (emit: DataHandler<T>) => void;
    }

    Configuration for AsyncStoredChannelTransfer — channel config with async pull/trigger interface plus optional initial value.

    Type Parameters

    • T