Click or drag to resize
Akka.NETIModuleComposeT1, T2, T3 Method (IModule, FuncT1, T2, T3)
Creates a new Module which is this Module composed with that Module, using the given function matFunc to compose the materialized value of `this` with the materialized value of that.

Namespace:  Akka.Streams.Implementation
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
IModule Compose<T1, T2, T3>(
	IModule that,
	Func<T1, T2, T3> matFunc
)

Parameters

that
Type: Akka.Streams.ImplementationIModule
A Module to be composed with (cannot be itself)
matFunc
Type: SystemFuncT1, T2, T3
A function which combines the materialized values

Type Parameters

T1
The type of the materialized value of this
T2
The type of the materialized value of that
T3
The type of the materialized value of the returned Module

Return Value

Type: IModule
A Module that represents the composition of this and that
See Also