[−][src]Struct nsq_client::Touch
Send TOUCH command to nsqd (reset timeout for and in-flight message)
Args:
- id - id of the message
Examples
use actix::prelude::*; use nsq_client::{Connection, Subscribe, Touch, Fin}; struct Consumer(pub Addr<Connection>); impl Actor for Consumer { type Context = Context<Self>; fn started(&mut self, ctx: &mut Self::Context) { self.subscribe::<Msg>(ctx, self.0.clone()); } } impl Handler<Msg> for Consumer { type Result = (); fn handle(&mut self, msg: Msg, ctx: &mut Self::Conetxt) { self.0.do_send(Touch(msg.id)); } }
Trait Implementations
impl Clone for Touch[src]
fn clone(&self) -> Touch[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Message for Touch[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.