Struct async_nats::client::Client

source ·
pub struct Client { /* private fields */ }
Expand description

Client is a Cloneable handle to NATS connection. Client should not be created directly. Instead, one of two methods can be used: crate::connect and crate::ConnectOptions::connect

Implementations§

source§

impl Client

source

pub fn server_info(&self) -> ServerInfo

Returns last received info from the server.

Examples
let client = async_nats::connect("demo.nats.io").await?;
println!("info: {:?}", client.server_info());
source

pub fn is_server_compatible(&self, major: i64, minor: i64, patch: i64) -> bool

Returns true if the server version is compatible with the version components.

Examples
let client = async_nats::connect("demo.nats.io").await?;
assert!(client.is_server_compatible(2, 8, 4));
source

pub async fn publish<S: ToSubject>( &self, subject: S, payload: Bytes ) -> Result<(), PublishError>

Publish a Message to a given subject.

Examples
let client = async_nats::connect("demo.nats.io").await?;
client.publish("events.data", "payload".into()).await?;
source

pub async fn publish_with_headers<S: ToSubject>( &self, subject: S, headers: HeaderMap, payload: Bytes ) -> Result<(), PublishError>

Publish a Message with headers to a given subject.

Examples
use std::str::FromStr;
let client = async_nats::connect("demo.nats.io").await?;
let mut headers = async_nats::HeaderMap::new();
headers.insert(
    "X-Header",
    async_nats::HeaderValue::from_str("Value").unwrap(),
);
client
    .publish_with_headers("events.data", headers, "payload".into())
    .await?;
source

pub async fn publish_with_reply<S: ToSubject, R: ToSubject>( &self, subject: S, reply: R, payload: Bytes ) -> Result<(), PublishError>

Publish a Message to a given subject, with specified response subject to which the subscriber can respond. This method does not await for the response.

Examples
let client = async_nats::connect("demo.nats.io").await?;
client
    .publish_with_reply("events.data", "reply_subject", "payload".into())
    .await?;
source

pub async fn publish_with_reply_and_headers<S: ToSubject, R: ToSubject>( &self, subject: S, reply: R, headers: HeaderMap, payload: Bytes ) -> Result<(), PublishError>

Publish a Message to a given subject with headers and specified response subject to which the subscriber can respond. This method does not await for the response.

Examples
use std::str::FromStr;
let client = async_nats::connect("demo.nats.io").await?;
let mut headers = async_nats::HeaderMap::new();
client
    .publish_with_reply_and_headers("events.data", "reply_subject", headers, "payload".into())
    .await?;
source

pub async fn request<S: ToSubject>( &self, subject: S, payload: Bytes ) -> Result<Message, RequestError>

Sends the request with headers.

Examples
let client = async_nats::connect("demo.nats.io").await?;
let response = client.request("service", "data".into()).await?;
source

pub async fn request_with_headers<S: ToSubject>( &self, subject: S, headers: HeaderMap, payload: Bytes ) -> Result<Message, RequestError>

Sends the request with headers.

Examples
let client = async_nats::connect("demo.nats.io").await?;
let mut headers = async_nats::HeaderMap::new();
headers.insert("Key", "Value");
let response = client
    .request_with_headers("service", headers, "data".into())
    .await?;
source

pub async fn send_request<S: ToSubject>( &self, subject: S, request: Request ) -> Result<Message, RequestError>

Sends the request created by the Request.

Examples
let client = async_nats::connect("demo.nats.io").await?;
let request = async_nats::Request::new().payload("data".into());
let response = client.send_request("service", request).await?;
source

pub fn new_inbox(&self) -> String

Create a new globally unique inbox which can be used for replies.

Examples
let reply = nc.new_inbox();
let rsub = nc.subscribe(reply).await?;
source

pub async fn subscribe<S: ToSubject>( &self, subject: S ) -> Result<Subscriber, SubscribeError>

Subscribes to a subject to receive messages.

Examples
use futures::StreamExt;
let client = async_nats::connect("demo.nats.io").await?;
let mut subscription = client.subscribe("events.>").await?;
while let Some(message) = subscription.next().await {
    println!("received message: {:?}", message);
}
source

pub async fn queue_subscribe<S: ToSubject>( &self, subject: S, queue_group: String ) -> Result<Subscriber, SubscribeError>

Subscribes to a subject with a queue group to receive messages.

Examples
use futures::StreamExt;
let client = async_nats::connect("demo.nats.io").await?;
let mut subscription = client.queue_subscribe("events.>", "queue".into()).await?;
while let Some(message) = subscription.next().await {
    println!("received message: {:?}", message);
}
source

pub async fn flush(&self) -> Result<(), FlushError>

Flushes the internal buffer ensuring that all messages are sent.

Examples
let client = async_nats::connect("demo.nats.io").await?;
client.flush().await?;
source

pub fn connection_state(&self) -> State

Returns the current state of the connection.

Examples
let client = async_nats::connect("demo.nats.io").await?;
println!("connection state: {}", client.connection_state());

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Client

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Client

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl ServiceExt for Client

Available on crate feature service only.
§

type Output = Pin<Box<dyn Future<Output = Result<Service, Box<dyn Error + Sync + Send>>> + Send>>

source§

fn add_service(&self, config: Config) -> Self::Output

Adds a Service instance. Read more
source§

fn service_builder(&self) -> ServiceBuilder

Returns Service instance builder. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more