zipLatestWith
Combines elements from multiple sources through a combine
function and passes the returned value downstream, picking always the latest element of each.
Signature
Source.zipLatestWith
Source.zipLatestWith
Flow.zipLatestWith
Flow.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