[][src]Struct tokio_nsq::NSQConsumer

pub struct NSQConsumer { /* fields omitted */ }

An NSQD consumer corresponding to multiple NSQD instances.

A consumer will automatically restart and maintain connections to multiple NSQD instances. As connections die, and restart REQ will automatically be rebalanced to the active connections.

Implementations

impl NSQConsumer[src]

pub async fn consume<'_>(&'_ mut self) -> Option<NSQEvent>[src]

Consume events from NSQ connections including status events.

pub async fn consume_filtered<'_>(&'_ mut self) -> Option<NSQMessage>[src]

Consume events from NSQ connections ignoring all connection status events.

Trait Implementations

impl Drop for NSQConsumer[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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.

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.

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