#nats #extension #messaging #api #extra #api-bindings

nats-extra

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

1 unstable release

new 0.1.0 Nov 20, 2024

#1840 in Network programming

Apache-2.0

15KB
140 lines

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(())
}

Dependencies

~21–33MB
~607K SLoC