| IModuleComposeT1, 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.129 (1.2.3.129)
Syntax IModule Compose<T1, T2, T3>(
IModule that,
Func<T1, T2, T3> matFunc
)
abstract Compose :
that : IModule *
matFunc : Func<'T1, 'T2, 'T3> -> IModule
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:
IModuleA Module that represents the composition of this and
thatSee Also