Merge<T> extension
Utilities to interleave events from multiple streams.
- on
-
- Stream<
T>
- Stream<
Methods
-
merge(
Stream< T> other) → Stream<T> -
Available on Stream<
Merges values and errors from this stream andT> , provided by the Merge extensionother
in any order as they arrive. -
mergeAll(
Iterable< Stream< others) → Stream<T> >T> -
Available on Stream<
Merges values and errors from this stream and any stream inT> , provided by the Merge extensionothers
in any order as they arrive.