phil-opp / merge-streams

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

License:Apache License 2.0


Languages

Language:Rust 100.0%