[][src]Struct actix::utils::TimerFunc

#[must_use = "future do nothing unless polled"]
pub struct TimerFunc<A> where
    A: Actor
{ /* fields omitted */ }

An ActorFuture that runs a function in the actor's context after a specified amount of time.

Unless you specifically need access to the future, use Context::run_later instead.

use std::time::Duration;
use actix::prelude::*;
use actix::utils::TimerFunc;

struct MyActor;

impl MyActor {
    fn stop(&mut self, context: &mut Context<Self>) {
        System::current().stop();
    }
}

impl Actor for MyActor {
   type Context = Context<Self>;

   fn started(&mut self, context: &mut Context<Self>) {
       // spawn a delayed future into our context
       TimerFunc::new(Duration::from_millis(100), Self::stop)
           .spawn(context);
   }
}

Methods

impl<A> TimerFunc<A> where
    A: Actor
[src]

pub fn new<F>(timeout: Duration, f: F) -> TimerFunc<A> where
    F: FnOnce(&mut A, &mut A::Context) + 'static, 
[src]

Creates a new TimerFunc with the given duration.

Trait Implementations

impl<A> ActorFuture for TimerFunc<A> where
    A: Actor
[src]

type Output = ()

The type of value that this future will resolved with if it is successful. Read more

type Actor = A

The actor within which this future runs

Auto Trait Implementations

impl<A> !RefUnwindSafe for TimerFunc<A>

impl<A> !Send for TimerFunc<A>

impl<A> !Sync for TimerFunc<A>

impl<A> Unpin for TimerFunc<A>

impl<A> !UnwindSafe for TimerFunc<A>

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<F> IntoActorFuture for F where
    F: ActorFuture
[src]

type Future = F

The future that this type can be converted into.

type Output = <F as ActorFuture>::Output

The item that the future may resolve with.

type Actor = <F as ActorFuture>::Actor

The actor within which this future runs

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>,