race<T> static method
Given two or more source streams
, emit all of the items from only
the first of these streams
to emit an item or notification.
If the provided streams is empty, the resulting sequence completes immediately without emitting any items.
Example
Rx.race([
Rx.timer(1, Duration(days: 1)),
Rx.timer(2, Duration(days: 2)),
Rx.timer(3, Duration(seconds: 1))
]).listen(print); // prints 3
Implementation
static Stream<T> race<T>(Iterable<Stream<T>> streams) =>
RaceStream<T>(streams);