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 Objecttrait Matchableclass Any
- Self type
-
Concat.type
Members list
In this article