transferum
    Preparing search index...

    Type Alias AsyncWriteTransferConfig<T>

    AsyncWriteTransferConfig: ErrorHandlingConfig<AsyncWriteTransfer<T>> & BackpressureConfig<
        T,
    > & {
        flow: AsyncInputFlowInterface<T>
        | InputFlowInterface<T>;
        ordered?: boolean;
    }

    Configuration for AsyncWriteTransfer — async or sync target flow with write(), optional error handler, backpressure, and ordered execution.

    Type Parameters

    • T

    Type Declaration

    • Readonlyflow: AsyncInputFlowInterface<T> | InputFlowInterface<T>
    • Optional Readonlyordered?: boolean

      When true, flow.write() invocations are executed sequentially in data-arrival order, regardless of their async duration. Default: false (unordered, backward-compatible).