Struct nats::Subscription

source ·
pub struct Subscription(/* private fields */);
Expand description

A Subscription receives Messages published to specific NATS Subjects.

Implementations§

source§

impl Subscription

source

pub fn receiver(&self) -> &Receiver<Message>

Get a crossbeam Receiver for subscription messages. Useful for crossbeam_channel::select macro

§Example
let sub1_ch = sub1.receiver();
let sub2_ch = sub2.receiver();
crossbeam_channel::select! {
    recv(sub1_ch) -> msg => {
        println!("Got message from sub1: {:?}", msg);
        Ok(())
    }
    recv(sub2_ch) -> msg => {
        println!("Got message from sub2: {:?}", msg);
        Ok(())
    }
}
source

pub fn next(&self) -> Option<Message>

Get the next message, or None if the subscription has been unsubscribed or the connection closed.

§Example
if let Some(msg) = sub.next() {}
source

pub fn try_next(&self) -> Option<Message>

Try to get the next message, or None if no messages are present or if the subscription has been unsubscribed or the connection closed.

§Example
if let Some(msg) = sub.try_next() {
    println!("Received {}", msg);
}
source

pub fn next_timeout(&self, timeout: Duration) -> Result<Message>

Get the next message, or a timeout error if no messages are available for timeout.

§Example
if let Ok(msg) = sub.next_timeout(std::time::Duration::from_secs(1)) {}
source

pub fn messages(&self) -> Iter<'_>

Returns a blocking message iterator. Same as calling iter().

§Example
for msg in sub.messages() {}
source

pub fn iter(&self) -> Iter<'_>

Returns a blocking message iterator.

§Example
for msg in sub.iter() {}
source

pub fn try_iter(&self) -> TryIter<'_>

Returns a non-blocking message iterator.

§Example
for msg in sub.try_iter() {}
source

pub fn timeout_iter(&self, timeout: Duration) -> TimeoutIter<'_>

Returns a blocking message iterator with a time deadline for blocking.

§Example
for msg in sub.timeout_iter(std::time::Duration::from_secs(1)) {}
source

pub fn with_handler<F>(self, handler: F) -> Handler
where F: Fn(Message) -> Result<()> + Send + 'static,

Attach a closure to handle messages. This closure will execute in a separate thread. The result of this call is a Handler which can not be iterated and must be unsubscribed or closed directly to unregister interest. A Handler will not unregister interest with the server when drop(&mut self) is called.

§Example
nc.subscribe("bar")?.with_handler(move |msg| {
    println!("Received {}", &msg);
    Ok(())
});
source

pub fn set_message_limits(&self, limit: usize)

Sets limit of how many messages can wait in internal queue. If limit will be reached, error_callback will be fired with information which subscription is affected

§Example
let sub = nc.subscribe("bar")?;
sub.set_message_limits(1000);
source

pub fn dropped_messages(&self) -> Result<usize>

Returns number of dropped messages for this Subscription. Dropped messages occur when set_message_limits is set and threshold is reached, triggering slow consumer error.

§Example:
let sub = nc.subscribe("bar")?;
sub.set_message_limits(1000);
println!("dropped messages: {}", sub.dropped_messages()?);
source

pub fn unsubscribe(self) -> Result<()>

Unsubscribe a subscription immediately without draining. Use drain instead if you want any pending messages to be processed by a handler, if one is configured.

§Example
let sub = nc.subscribe("foo")?;
sub.unsubscribe()?;
source

pub fn close(self) -> Result<()>

Close a subscription. Same as unsubscribe

Use drain instead if you want any pending messages to be processed by a handler, if one is configured.

§Example
let sub = nc.subscribe("foo")?;
sub.close()?;
source

pub fn drain(&self) -> Result<()>

Send an unsubscription then flush the connection, allowing any unprocessed messages to be handled by a handler function if one is configured.

After the flush returns, we know that a round-trip to the server has happened after it received our unsubscription, so we shut down the subscriber afterwards.

A similar method exists on the Connection struct which will drain all subscriptions for the NATS client, and transition the entire system into the closed state afterward.

§Example

let mut sub = nc.subscribe("test.drain")?;

nc.publish("test.drain", "message")?;
sub.drain()?;

let mut received = false;
for _ in sub {
    received = true;
}

assert!(received);

Trait Implementations§

source§

impl Clone for Subscription

source§

fn clone(&self) -> Subscription

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 Subscription

source§

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

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

impl<'a> IntoIterator for &'a Subscription

§

type Item = Message

The type of the elements being iterated over.
§

type IntoIter = Iter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Iter<'a>

Creates an iterator from a value. Read more
source§

impl IntoIterator for Subscription

§

type Item = Message

The type of the elements being iterated over.
§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

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.
source§

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

source§

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