Click or drag to resize
Akka.NETFlowOperationsInterleaveMaterializedTIn, T1, T2, TMat, TMat2, TMat3 Method

Namespace:  Akka.Streams.Dsl
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static Flow<TIn, T2, TMat3> InterleaveMaterialized<TIn, T1, T2, TMat, TMat2, TMat3>(
	this Flow<TIn, T1, TMat> flow,
	IGraph<SourceShape<T2>, TMat2> graph,
	int segmentSize,
	Func<TMat, TMat2, TMat3> combine
)
where T1 : T2

Parameters

flow
Type: Akka.Streams.DslFlowTIn, T1, TMat
TBD
graph
Type: Akka.StreamsIGraphSourceShapeT2, TMat2
TBD
segmentSize
Type: SystemInt32
TBD
combine
Type: SystemFuncTMat, TMat2, TMat3
TBD

Type Parameters

TIn
TBD
T1
TBD
T2
TBD
TMat
TBD
TMat2
TBD
TMat3
TBD

Return Value

Type: FlowTIn, T2, TMat3
TBD

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type FlowTIn, T1, TMat. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also