transferum
    Preparing search index...

    Type Alias TransferBridgeConfig<TInput, TOutput>

    Configuration for TransferBridge — source, target, intermediate duplex transfer, ownership flag, and initial gate state.

    type TransferBridgeConfig<TInput, TOutput> = {
        activated: boolean;
        linkStrategy?: LinkStrategyInterface;
        middle: DuplexTransfer<TInput, TOutput>;
        middleOwned: boolean;
        source: OutputTransfer<TInput>;
        target: InputTransfer<TOutput>;
    }

    Type Parameters

    • TInput
    • TOutput
    Index
    activated: boolean
    linkStrategy?: LinkStrategyInterface
    middleOwned: boolean