3 releases
0.1.2 | Mar 1, 2022 |
---|---|
0.1.1 | Feb 28, 2022 |
0.1.0 | Feb 24, 2022 |
#719 in Asynchronous
11,905 downloads per month
Used in 6 crates
(4 directly)
25KB
478 lines
merge-streams
Merge multiple streams into one.
Based on Yoshua Wuyts's futures-concurrency
crate and the corresponding Futures Concurrency III
post. Since the futures-concurrency
crate now supports stable Rust too, there is no reason to this crate instead anymore.
Example
Merge multiple streams to handle values as soon as they're ready, without ever dropping a single value:
use merge_streams::MergeStreams;
use futures_lite::future::block_on;
use futures_lite::{stream, StreamExt};
fn main() {
block_on(async {
let a = stream::once(1);
let b = stream::once(2);
let c = stream::once(3);
let mut s = (a, b, c).merge();
let mut counter = 0;
s.for_each(|n| counter += n).await;
assert_eq!(counter, 6);
})
}
License
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~0.3–0.8MB
~18K SLoC