15 releases

0.5.3 Sep 9, 2023
0.5.2 Feb 2, 2021
0.5.1 Jan 29, 2020
0.5.0 Nov 27, 2019
0.4.0 Jun 1, 2018

#378 in Asynchronous

Download history 285/week @ 2023-12-18 216/week @ 2023-12-25 270/week @ 2024-01-01 568/week @ 2024-01-08 583/week @ 2024-01-15 498/week @ 2024-01-22 437/week @ 2024-01-29 399/week @ 2024-02-05 490/week @ 2024-02-12 628/week @ 2024-02-19 671/week @ 2024-02-26 558/week @ 2024-03-04 541/week @ 2024-03-11 550/week @ 2024-03-18 709/week @ 2024-03-25 1018/week @ 2024-04-01

2,878 downloads per month
Used in 8 crates (6 directly)

MIT/Apache

58KB
785 lines

streamunordered

Crates.io Documentation Build Status

A stream that efficiently multiplexes multiple streams.

This "combinator" provides the ability to maintain and drive a set of streams to completion, while also providing access to each stream as it yields new elements.

Streams are inserted into this set and their realized values are yielded as they are produced. This structure is optimized to manage a large number of streams. Streams managed by StreamUnordered will only be polled when they generate notifications. This reduces the required amount of work needed to coordinate large numbers of streams.

When a StreamUnordered is first created, it does not contain any streams. Calling poll in this state will result in Ok(Async::Ready(None)) to be returned. Streams are submitted to the set using insert; however, the stream will not be polled at this point. StreamUnordered will only poll managed streams when StreamUnordered::poll is called. As such, it is important to call poll after inserting new streams.

If StreamUnordered::poll returns Ok(Async::Ready(None)) this means that the set is currently not managing any streams. A stream may be submitted to the set at a later time. At that point, a call to StreamUnordered::poll will either return the stream's resolved value or Ok(Async::NotReady) if the stream has not yet completed.

Whenever a value is yielded, the yielding stream's index is also included. A reference to the stream that originated the value is obtained by using StreamUnordered::get or StreamUnordered::get_mut.

Dependencies

~770KB
~14K SLoC