transferum
    Preparing search index...

    Class AsyncTransformBridge<TInput, TOutput>

    Bridge with asynchronous data type transformation via AsyncOperator.

    Flow structure: source → gate → asyncConverter → target

    Gate and subscription remain synchronous. AsyncConvertTransfer receives data via asyncPush (the gate→converter link uses the async strategy of linkTransfers), transforms via await operator.apply() and notifies subscribers synchronously.

    Configuration (AsyncTransformBridgeConfig):

    • source: OutputTransfer
    • target: InputTransfer
    • operator: AsyncOperatorInterface<TInput, TOutput | undefined>
    • activated: boolean
    • onError?: ErrorHandler — operator error handler

    Type Parameters

    • TInput
    • TOutput

    Implements

    Index
    _linkStrategy: LinkStrategyInterface
    _subscribers: SubscriberInterface[]