Struct async_nats::Connection[][src]

pub struct Connection { /* fields omitted */ }
Expand description

A NATS client connection.

Implementations

impl Connection[src]

pub async fn publish(&self, subject: &str, msg: impl AsRef<[u8]>) -> Result<()>[src]

Publishes a message.

pub async fn publish_request(
    &self,
    subject: &str,
    reply: &str,
    msg: impl AsRef<[u8]>
) -> Result<()>
[src]

Publishes a message with a reply subject.

pub fn new_inbox(&self) -> String[src]

Creates a new unique subject for receiving replies.

pub async fn request(
    &self,
    subject: &str,
    msg: impl AsRef<[u8]>
) -> Result<Message>
[src]

Publishes a message and waits for the response.

pub async fn request_timeout(
    &self,
    subject: &str,
    msg: impl AsRef<[u8]>,
    timeout: Duration
) -> Result<Message>
[src]

Publishes a message and waits for the response or until the timeout duration is reached

pub async fn request_multi(
    &self,
    subject: &str,
    msg: impl AsRef<[u8]>
) -> Result<Subscription>
[src]

Publishes a message and returns a subscription for awaiting the response.

pub async fn subscribe(&self, subject: &str) -> Result<Subscription>[src]

Creates a subscription.

pub async fn queue_subscribe(
    &self,
    subject: &str,
    queue: &str
) -> Result<Subscription>
[src]

Creates a queue subscription.

pub async fn flush(&self) -> Result<()>[src]

Flushes by performing a round trip to the server.

pub async fn flush_timeout(&self, timeout: Duration) -> Result<()>[src]

Flushes by performing a round trip to the server or times out after a duration of time.

pub async fn rtt(&self) -> Result<Duration>[src]

Calculates the round trip time between this client and the server.

pub fn client_ip(&self) -> Result<IpAddr>[src]

Returns the client IP as known by the most recently connected server.

Supported as of server version 2.1.6.

pub fn client_id(&self) -> u64[src]

Returns the client ID as known by the most recently connected server.

pub async fn drain(&self) -> Result<()>[src]

Unsubscribes all subscriptions and flushes the connection.

Remaining messages can still be received by existing Subscriptions.

pub async fn close(&self) -> Result<()>[src]

Closes the connection.

pub async fn publish_with_reply_or_headers(
    &self,
    subject: &str,
    reply: Option<&str>,
    headers: Option<&Headers>,
    msg: impl AsRef<[u8]>
) -> Result<()>
[src]

Publish a message which may have a reply subject or headers set.

Trait Implementations

impl Clone for Connection[src]

fn clone(&self) -> Connection[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Connection[src]

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

pub fn vzip(self) -> V