| IModuleFuseT1, T2, T3 Method (IModule, OutPort, InPort, FuncT1, T2, T3) |
Fuses this Module to that Module by wiring together from and to,
retaining the materialized value of `this` in the result, using the provided function matFunc.
Namespace:
Akka.Streams.Implementation
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax IModule Fuse<T1, T2, T3>(
IModule that,
OutPort from,
InPort to,
Func<T1, T2, T3> matFunc
)
abstract Fuse :
that : IModule *
from : OutPort *
to : InPort *
matFunc : Func<'T1, 'T2, 'T3> -> IModule
Parameters
- that
- Type: Akka.Streams.ImplementationIModule
A module to fuse with - from
- Type: Akka.StreamsOutPort
The data source to wire - to
- Type: Akka.StreamsInPort
The data sink to wire - matFunc
- Type: SystemFuncT1, T2, T3
The function to apply to the materialized values
Type Parameters
- T1
- TBD
- T2
- TBD
- T3
- TBD
Return Value
Type:
IModuleA module representing fusion of `this` and
thatSee Also