Click or drag to resize
Akka.NETFlowOperationsConcatTIn, TOut, TMat Method
Concatenate the given SourceTOut, TMat to this FlowTIn, TOut, TMat, 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 SourceTOut, TMat is materialized together with this FlowTIn, TOut, TMat and just kept from producing elements by asserting back-pressure until its time comes. If this FlowTIn, TOut, TMat gets upstream error - no elements from the given SourceTOut, TMat will be pulled.

Emits when element is available from current stream or from the given SourceTOut, TMat when current is completed

Backpressures when downstream backpressures

Completes when given SourceTOut, TMat completes

Cancels when downstream cancels

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, TOut, TMat> Concat<TIn, TOut, TMat>(
	this Flow<TIn, TOut, TMat> flow,
	IGraph<SourceShape<TOut>, TMat> other
)

Parameters

flow
Type: Akka.Streams.DslFlowTIn, TOut, TMat
TBD
other
Type: Akka.StreamsIGraphSourceShapeTOut, TMat
TBD

Type Parameters

TIn
TBD
TOut
TBD
TMat
TBD

Return Value

Type: FlowTIn, TOut, TMat
TBD

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type FlowTIn, TOut, 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