74 lines
1.5 KiB
Rust
74 lines
1.5 KiB
Rust
use async_trait::async_trait;
|
|
use messagebus::{receivers, Bus, AsyncHandler};
|
|
|
|
struct TmpReceiver;
|
|
|
|
#[async_trait]
|
|
impl AsyncHandler<f32> for TmpReceiver {
|
|
type Error = anyhow::Error;
|
|
type Response = ();
|
|
|
|
async fn handle(&self, msg: f32, _bus: &Bus) -> Result<Self::Response, Self::Error> {
|
|
println!("---> f32 {}", msg);
|
|
|
|
std::thread::sleep(std::time::Duration::from_secs(1));
|
|
|
|
println!("done");
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let (b, poller) = Bus::build()
|
|
.register(TmpReceiver)
|
|
.subscribe::<f32, receivers::BufferUnorderedAsync<_>, _, _>(1, receivers::BufferUnorderedConfig {
|
|
buffer_size: 1,
|
|
max_parallel: 1,
|
|
})
|
|
.done()
|
|
.build();
|
|
|
|
println!("sending 1");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("sending 2");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("sending 3");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("sending 4");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("sending 5");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("sending 6");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("sending 7");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("sending 8");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("sending 9");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("sending 10");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("sending 11");
|
|
b.send(32f32).await.unwrap();
|
|
|
|
println!("flush");
|
|
b.flush().await;
|
|
|
|
println!("close");
|
|
b.close().await;
|
|
|
|
poller.await;
|
|
println!("[done]");
|
|
}
|