object Concat
Takes two streams and outputs an output stream formed from the two input streams by consuming one stream first emitting all of its elements, then consuming the second stream emitting all of its elements.
Emits when the current stream has an element available; if the current input completes, it tries the next one
Backpressures when downstream backpressures
Completes when all upstreams complete
Cancels when downstream cancels
- Source
- Graph.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Concat
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def create[T](clazz: Class[T]): Graph[UniformFanInShape[T, T], NotUsed]
Create a new anonymous
Concat
operator with the specified input types. - def create[T](inputCount: Int, detachedInputs: Boolean): Graph[UniformFanInShape[T, T], NotUsed]
Create a new anonymous
Concat
operator with the specified input types. - def create[T](inputCount: Int): Graph[UniformFanInShape[T, T], NotUsed]
Create a new anonymous
Concat
operator with the specified input types. - def create[T](): Graph[UniformFanInShape[T, T], NotUsed]
Create a new anonymous
Concat
operator with the specified input types.