Package org.apache.pekko.stream.javadsl
Class ZipLatest$
java.lang.Object
org.apache.pekko.stream.javadsl.ZipLatest$
Combine the elements of 2 streams into a stream of tuples, picking always the latest element of each.
A Zip has a left and a right input port and one out port
'''Emits when''' all of the inputs have at least an element available, and then each time an element becomes available on either of the inputs
'''Backpressures when''' downstream backpressures
'''Completes when''' any upstream completes
'''Cancels when''' downstream cancels
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ZipLatest$Static reference to the singleton instance of this Scala object. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<A,B> Graph<FanInShape2<A, B, Pair<A, B>>, NotUsed> create()Create a newZipLatestoperator with the specified input types and zipping-function which createsorg.apache.pekko.japi.Pairs.
-
Field Details
-
MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Constructor Details
-
ZipLatest$
public ZipLatest$()
-
-
Method Details
-
create
Create a newZipLatestoperator with the specified input types and zipping-function which createsorg.apache.pekko.japi.Pairs.
-