#stream #iterator #future #async #non-blocking

stream-flatten-iters

Flattens a stream of iterators into one continuous stream

3 unstable releases

0.2.0 May 13, 2020
0.1.1 May 1, 2020
0.1.0 May 1, 2020

#1809 in Asynchronous

Download history 1276/week @ 2024-07-19 1416/week @ 2024-07-26 747/week @ 2024-08-02 607/week @ 2024-08-09 784/week @ 2024-08-16 818/week @ 2024-08-23 427/week @ 2024-08-30 933/week @ 2024-09-06 448/week @ 2024-09-13 771/week @ 2024-09-20 873/week @ 2024-09-27 625/week @ 2024-10-04 709/week @ 2024-10-11 197/week @ 2024-10-18 711/week @ 2024-10-25 452/week @ 2024-11-01

2,259 downloads per month
Used in 2 crates

MIT license

19KB
281 lines

flatten_iters flattens a stream of iterators into one continuous stream.

This is useful when you have a producer that is paging through a resource (like a REST endpoint with pages or a next URL, an ElasticSearch query with a scroll parameter, etc.)

This code is taken almost verbatim from StreamExt::flatten and is similar in spirit to Iterator::flatten.

use stream_flatten_iters::StreamExt as _;
use futures::stream::StreamExt;

#[tokio::main]
async fn main() {
    let (mut tx, mut rx) = tokio::sync::mpsc::channel(3);

    tokio::spawn(async move {
        tx.send(vec![0, 1, 2, 3]).await.unwrap();
        tx.send(vec![4, 5, 6]).await.unwrap();
        tx.send(vec![7, 8, 9]).await.unwrap();
    });

    let mut stream = rx.flatten_iters();

    while let Some(res) = stream.next().await {
        println!("got = {}", res);
    }
}

// Output:
// got = 0
// got = 1
// got = 2
// got = 3
// got = 4
// got = 5
// got = 6
// got = 7
// got = 8
// got = 9

This is especially useful when combined with StreamExt::buffered to keep a buffer of promises going throughout a long promise.

use stream_flatten_iters::StreamExt as _;
use futures::stream::StreamExt;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let (mut tx, mut rx) = tokio::sync::mpsc::channel(3);

    tokio::spawn(async move {
        for i in 0_usize..100 {
            let start = i * 10;
            let end = start + 10;
            tx.send(start..end).await.unwrap();
        }
    });

    let mut stream = rx.flatten_iters().map(|i| long_process(i)).buffered(10);

    let mut total = 0_usize;
    while let Some(res) = stream.next().await {
        let _ = res?;
        total += 1;
        println!("Completed {} tasks", total);
    }

    Ok(())
}

async fn long_process(i: usize) -> Result<(), Box<dyn std::error::Error>> {
    // Do something that takes a long time
    Ok(())
}

Dependencies

~1.5MB
~37K SLoC