zipLatestWith

Combines elements from multiple sources through a combine function and passes the returned value downstream, picking always the latest element of each.

Fan-in operators

Signature

Source.zipLatestWithSource.zipLatestWith Flow.zipLatestWithFlow.zipLatestWith

Description

Combines elements from each of multiple sources into tuples Pair and passes the tuples pairs downstream, picking always the latest element of each.

No element is emitted until at least one element from each Source becomes available. Whenever a new element appears, the zipping function is invoked with a tuple containing the new element and the last seen element of the other stream.

Reactive Streams semantics

emits 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

Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.