Zip

org.apache.pekko.stream.javadsl.Zip
object Zip

Combine the elements of 2 streams into a stream of tuples.

A Zip has a left and a right input port and one out port

'''Emits when''' all of the inputs has an element available

'''Backpressures when''' downstream backpressures

'''Completes when''' any upstream completes

'''Cancels when''' downstream cancels

Attributes

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

Members list

Value members

Concrete methods

def create[A, B]: Graph[FanInShape2[A, B, Pair[A, B]], NotUsed]

Create a new Zip operator with the specified input types and zipping-function which creates org.apache.pekko.japi.Pairs.

Create a new Zip operator with the specified input types and zipping-function which creates org.apache.pekko.japi.Pairs.

Attributes

Source
Graph.scala