Concat

org.apache.pekko.stream.javadsl.Concat
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

Attributes

Source
Graph.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Concat.type

Members list

Value members

Concrete methods

Create a new anonymous Concat operator with the specified input types.

Create a new anonymous Concat operator with the specified input types.

Attributes

Source
Graph.scala
def create[T](inputCount: Int): Graph[UniformFanInShape[T, T], NotUsed]

Create a new anonymous Concat operator with the specified input types.

Create a new anonymous Concat operator with the specified input types.

Attributes

Source
Graph.scala
def create[T](inputCount: Int, detachedInputs: Boolean): Graph[UniformFanInShape[T, T], NotUsed]

Create a new anonymous Concat operator with the specified input types.

Create a new anonymous Concat operator with the specified input types.

Attributes

Source
Graph.scala
def create[T](clazz: Class[T]): Graph[UniformFanInShape[T, T], NotUsed]

Create a new anonymous Concat operator with the specified input types.

Create a new anonymous Concat operator with the specified input types.

Attributes

Source
Graph.scala