transferum
    Preparing search index...

    Type Alias AsyncTransformBridgeConfig<TInput, TOutput>

    AsyncTransformBridgeConfig: ErrorHandlingConfig<
        AsyncConvertTransfer<TInput, TOutput>,
    > & {
        activated: boolean;
        linkStrategy?: LinkStrategyInterface;
        operator: AsyncOperatorInterface<TInput, TOutput | undefined>;
        source: OutputTransfer<TInput>;
        target: InputTransfer<TOutput>;
    }

    Configuration for AsyncTransformBridge — source, target, async operator, gate state, and optional error handler.

    Type Parameters

    • TInput
    • TOutput