object Concat
- Source
- Graph.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Concat
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def apply[T](inputPorts: Int, detachedInputs: Boolean): [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.- inputPorts
The number of fan-in input ports
- detachedInputs
If the ports should be detached (eagerly pull both inputs) useful to avoid deadlocks in graphs with loops
- def apply[T](inputPorts: Int = 2): [UniformFanInShape[T, T], NotUsed]
Create a new
Concat
.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.