flowly 0.6.1

Flowly is a library of modular and reusable components for building robust pipelines processing audio, video and other.
Documentation
use flowly::Context;
use flowly_service::{Service, ServiceExt, flow};
use futures::FutureExt;
use futures::StreamExt;
use futures::TryStreamExt;

#[derive(Debug, Clone, Copy)]
pub enum Error {
    Test,
}

#[derive(Clone)]
pub struct Worker;
impl Service<i32> for Worker {
    type Out = Result<u64, Error>;

    fn handle(&self, item: i32, _cx: &Context) -> impl futures::Stream<Item = Self::Out> + Send {
        async move {
            tokio::time::sleep(std::time::Duration::from_millis(item as u64 * 10)).await;
            Ok(item as u64)
        }
        .into_stream()
    }
}

#[tokio::main]
async fn main() {
    env_logger::init();
    let mut x = flow::<_, Error>() // -
        .flow(Worker)
        .spawn_each();

    let cx = flowly_service::Context::new();
    let y = x
        .handle_stream(
            futures::stream::iter([10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0]),
            &cx,
        )
        .try_flatten_unordered(16);

    y.for_each_concurrent(128, async |x| {
        println!("{} ", x.unwrap());
    })
    .await;

    println!();
}