Package org.apache.pekko.stream.scaladsl
Class Concat<T>
- java.lang.Object
-
- org.apache.pekko.stream.stage.GraphStageWithMaterializedValue<S,NotUsed>
-
- org.apache.pekko.stream.stage.GraphStage<UniformFanInShape<T,T>>
-
- org.apache.pekko.stream.scaladsl.Concat<T>
-
- All Implemented Interfaces:
Graph<UniformFanInShape<T,T>,NotUsed>
public final class Concat<T> extends GraphStage<UniformFanInShape<T,T>>
Takes multiple streams and outputs one stream formed from the input streams by first emitting all of the elements from the first stream and then emitting all of the elements from the second stream, etc.A
Concat
has onefirst
port, onesecond
port and oneout
port.'''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
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.pekko.stream.Graph
Graph.GraphMapMatVal<S extends Shape,M>
-
-
Constructor Summary
Constructors Constructor Description Concat(int inputPorts)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> Graph<UniformFanInShape<T,T>,NotUsed>
apply(int inputPorts)
Create a newConcat
.static <T> Graph<UniformFanInShape<T,T>,NotUsed>
apply(int inputPorts, boolean detachedInputs)
Create a newConcat
operator that will concatenate two or more streams.static <T> int
apply$default$1()
GraphStageLogic
createLogic(Attributes inheritedAttributes)
scala.collection.immutable.IndexedSeq<Inlet<T>>
in()
Attributes
initialAttributes()
int
inputPorts()
Outlet<T>
out()
UniformFanInShape<T,T>
shape()
The shape of a graph is all that is externally visible: its inlets and outlets.java.lang.String
toString()
-
Methods inherited from class org.apache.pekko.stream.stage.GraphStage
createLogicAndMaterializedValue
-
Methods inherited from class org.apache.pekko.stream.stage.GraphStageWithMaterializedValue
withAttributes
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.pekko.stream.Graph
addAttributes, async, async, async, getAttributes, named
-
-
-
-
Method Detail
-
apply
public static <T> Graph<UniformFanInShape<T,T>,NotUsed> apply(int inputPorts)
Create a newConcat
. 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.
-
apply
public static <T> Graph<UniformFanInShape<T,T>,NotUsed> apply(int inputPorts, boolean detachedInputs)
Create a newConcat
operator that will concatenate two or more streams.- Parameters:
inputPorts
- The number of fan-in input portsdetachedInputs
- If the ports should be detached (eagerly pull both inputs) useful to avoid deadlocks in graphs with loops- Returns:
-
apply$default$1
public static <T> int apply$default$1()
-
inputPorts
public int inputPorts()
-
initialAttributes
public Attributes initialAttributes()
- Overrides:
initialAttributes
in classGraphStageWithMaterializedValue<UniformFanInShape<T,T>,NotUsed>
-
shape
public UniformFanInShape<T,T> shape()
Description copied from interface:Graph
The shape of a graph is all that is externally visible: its inlets and outlets.
-
createLogic
public GraphStageLogic createLogic(Attributes inheritedAttributes)
- Specified by:
createLogic
in classGraphStage<UniformFanInShape<T,T>>
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-