nats-extra

Crates.ionats-extra
lib.rsnats-extra
version0.1.0
sourcesrc
created_at2024-11-20 12:16:24.352393
updated_at2024-11-20 12:16:24.352393
descriptionSet of utilities and extensions for the Core NATS of the async-nats crate
homepagehttps://github.com/synadia-io/orbit.rs
repositoryhttps://github.com/synadia-io/orbit.rs
max_upload_size
id1454748
size19,102
Tomasz Pietrek (Jarema)

documentation

https://docs.rs/nats-extra

README

nats-extra

Set of utilities and extensions for the Core NATS of the [async-nats] crate.

Request Many

Request many pattern implementation useful for streaming responses and scatter-gather pattern.

Complete example

Connect to NATS server, and extend the [async-nats::Client] with the request_many capabilities.

use async_nats::Client;
// Extend the client with request_many.
use nats_extra::request_many::RequestManyExt;
use futures::StreamExt;

#[tokio::main]
async fn main() -> Result<(), async_nats::Error> {
    let client = async_nats::connect("demo.nats.io").await?;

    let mut requests = client.subscribe("requests").await?;

    let mut responses = client
        .request_many()
        .send("requests", "payload".into())
        .await?;

    let request = requests.next().await.unwrap();
    for _ in 0..100 {
        client.publish(request.reply.clone().unwrap(), "data".into()).await?;
    }

    while let Some(message) = responses.next().await {
        println!("Received: {:?}", message);
    }
    Ok(())
}
Commit count: 21

cargo fmt