Concat

org.apache.pekko.stream.scaladsl.Concat
See theConcat companion class
object Concat

Attributes

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

Members list

Value members

Concrete methods

def apply[T](inputPorts: Int): Graph[UniformFanInShape[T, T], NotUsed]

Create a new Concat. Note that this for historical reasons creates a "detached" Concat which will eagerly pull each input on materialization and act as a one element buffer for each input.

Create a new Concat. Note that this for historical reasons creates a "detached" Concat which will eagerly pull each input on materialization and act as a one element buffer for each input.

Attributes

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

Create a new Concat operator that will concatenate two or more streams.

Create a new Concat operator that will concatenate two or more streams.

Value parameters

detachedInputs

If the ports should be detached (eagerly pull both inputs) useful to avoid deadlocks in graphs with loops

inputPorts

The number of fan-in input ports

Attributes

Source
Graph.scala