Click or drag to resize
Akka.NETIModuleFuseT1, 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.42 (1.2.3.42)
Syntax
IModule Fuse<T1, T2, T3>(
	IModule that,
	OutPort from,
	InPort to,
	Func<T1, T2, T3> matFunc
)

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: IModule
A module representing fusion of `this` and that
See Also