Click or drag to resize
Akka.NETFlowTIn, TOut, TMatConcatMaterializedTMat2, TMat3 Method
Concatenate the given to this , meaning that once this Flow’s input is exhausted and all result elements have been generated, the Source’s elements will be produced. Note that the is materialized together with this Flow and just kept from producing elements by asserting back-pressure until its time comes. If this gets upstream error - no elements from the given will be pulled. @see . It is recommended to use the internally optimized LeftTLeft, TRight(TLeft, TRight) and RightTLeft, TRight(TLeft, TRight) combiners where appropriate instead of manually writing functions that pass through one of the values.

Namespace:  Akka.Streams.Dsl
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public Flow<TIn, TOut, TMat3> ConcatMaterialized<TMat2, TMat3>(
	IGraph<SourceShape<TOut>, TMat2> that,
	Func<TMat, TMat2, TMat3> materializedFunction
)

Parameters

that
Type: Akka.StreamsIGraphSourceShapeTOut, TMat2
TBD
materializedFunction
Type: SystemFuncTMat, TMat2, TMat3
TBD

Type Parameters

TMat2
TBD
TMat3
TBD

Return Value

Type: FlowTIn, TOut, TMat3
TBD
See Also

Reference