Package akka.stream.javadsl
Class Zip$
- java.lang.Object
-
- akka.stream.javadsl.Zip$
-
public class Zip$ extends java.lang.ObjectCombine the elements of 2 streams into a stream of tuples.A
Ziphas aleftand arightinput port and oneoutport'''Emits when''' all of the inputs has an element available
'''Backpressures when''' downstream backpressures
'''Completes when''' any upstream completes
'''Cancels when''' downstream cancels
-
-
Constructor Summary
Constructors Constructor Description Zip$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <A,B>
Graph<FanInShape2<A,B,Pair<A,B>>,NotUsed>create()Create a newZipoperator with the specified input types and zipping-function which createsakka.japi.Pairs.
-
-
-
Field Detail
-
MODULE$
public static final Zip$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
create
public <A,B> Graph<FanInShape2<A,B,Pair<A,B>>,NotUsed> create()
Create a newZipoperator with the specified input types and zipping-function which createsakka.japi.Pairs.
-
-