| SourceOperationsConcatTOut, TMat Method |
Concatenate the given
SourceTOut, TMat to this
IFlowTOut, 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
IFlowTOut, TMat and just kept
from producing elements by asserting back-pressure until its time comes.
If this
IFlowTOut, 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.129 (1.2.3.129)
Syntax public static Source<TOut, TMat> Concat<TOut, TMat>(
this Source<TOut, TMat> flow,
IGraph<SourceShape<TOut>, TMat> other
)
[<ExtensionAttribute>]
static member Concat :
flow : Source<'TOut, 'TMat> *
other : IGraph<SourceShape<'TOut>, 'TMat> -> Source<'TOut, 'TMat>
Parameters
- flow
- Type: Akka.Streams.DslSourceTOut, TMat
TBD - other
- Type: Akka.StreamsIGraphSourceShapeTOut, TMat
TBD
Type Parameters
- TOut
- TBD
- TMat
- TBD
Return Value
Type:
SourceTOut,
TMatTBD
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
SourceTOut,
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