Package org.apache.pekko.stream.javadsl
Class Concat
java.lang.Object
org.apache.pekko.stream.javadsl.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
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic <T> Graph<UniformFanInShape<T,T>, NotUsed> create()Create a new anonymousConcatoperator with the specified input types.static <T> Graph<UniformFanInShape<T,T>, NotUsed> create(int inputCount) Create a new anonymousConcatoperator with the specified input types.static <T> Graph<UniformFanInShape<T,T>, NotUsed> create(int inputCount, boolean detachedInputs) Create a new anonymousConcatoperator with the specified input types.static <T> Graph<UniformFanInShape<T,T>, NotUsed> Create a new anonymousConcatoperator with the specified input types.
- 
Constructor Details- 
Concatpublic Concat()
 
- 
- 
Method Details- 
createCreate a new anonymousConcatoperator with the specified input types.
- 
createCreate a new anonymousConcatoperator with the specified input types.
- 
createpublic static <T> Graph<UniformFanInShape<T,T>, createNotUsed> (int inputCount, boolean detachedInputs) Create a new anonymousConcatoperator with the specified input types.
- 
createCreate a new anonymousConcatoperator with the specified input types.
 
-