[−][src]Struct actix_web::actix::TimerFunc
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]
A: Actor,
pub fn new<F>(timeout: Duration, f: F) -> TimerFunc<A> where
F: FnOnce(&mut A, &mut <A as Actor>::Context) + 'static,
[src]
F: FnOnce(&mut A, &mut <A as Actor>::Context) + 'static,
Creates a new TimerFunc
with the given duration.
Trait Implementations
impl<A> ActorFuture for TimerFunc<A> where
A: Actor,
[src]
A: Actor,
type Item = ()
The type of value that this future will resolved with if it is successful. Read more
type Error = ()
The type of error that this future will resolve with if it fails in a normal fashion. Read more
type Actor = A
The actor within which this future runs
fn poll(
&mut self,
act: &mut <TimerFunc<A> as ActorFuture>::Actor,
ctx: &mut <<TimerFunc<A> as ActorFuture>::Actor as Actor>::Context
) -> Result<Async<<TimerFunc<A> as ActorFuture>::Item>, <TimerFunc<A> as ActorFuture>::Error>
[src]
&mut self,
act: &mut <TimerFunc<A> as ActorFuture>::Actor,
ctx: &mut <<TimerFunc<A> as ActorFuture>::Actor as Actor>::Context
) -> Result<Async<<TimerFunc<A> as ActorFuture>::Item>, <TimerFunc<A> as ActorFuture>::Error>
fn map<F, U>(self, f: F) -> Map<Self, F> where
F: FnOnce(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
[src]
F: FnOnce(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
Map this future's result to a different type, returning a new future of the resulting type. Read more
fn map_err<F, E>(self, f: F) -> MapErr<Self, F> where
F: FnOnce(Self::Error, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> E,
[src]
F: FnOnce(Self::Error, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> E,
Map this future's error to a different error, returning a new future.
fn drop_err(self) -> DropErr<Self>
[src]
Drop this future's error, returning a new future.
fn from_err<E>(self) -> FromErr<Self, E> where
E: From<Self::Error>,
[src]
E: From<Self::Error>,
Map this future's error to any error implementing From
for this future's Error
, returning a new future. Read more
fn then<F, B>(self, f: F) -> Then<Self, B, F> where
B: IntoActorFuture<Actor = Self::Actor>,
F: FnOnce(Result<Self::Item, Self::Error>, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> B,
[src]
B: IntoActorFuture<Actor = Self::Actor>,
F: FnOnce(Result<Self::Item, Self::Error>, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> B,
Chain on a computation for when a future finished, passing the result of the future to the provided closure f
. Read more
fn and_then<F, B>(self, f: F) -> AndThen<Self, B, F> where
B: IntoActorFuture<Error = Self::Error, Actor = Self::Actor>,
F: FnOnce(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> B,
[src]
B: IntoActorFuture<Error = Self::Error, Actor = Self::Actor>,
F: FnOnce(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> B,
Execute another future after this one has resolved successfully.
fn timeout(self, timeout: Duration, err: Self::Error) -> Timeout<Self>
[src]
Add timeout to futures chain. Read more
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
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
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Erased for T
impl<A, T> ContextFutureSpawner for T where
A: Actor,
T: ActorFuture<Item = (), Error = (), Actor = A> + 'static,
<A as Actor>::Context: AsyncContext<A>,
[src]
A: Actor,
T: ActorFuture<Item = (), Error = (), Actor = A> + 'static,
<A as Actor>::Context: AsyncContext<A>,
fn spawn(self, ctx: &mut <A as Actor>::Context)
[src]
fn wait(self, ctx: &mut <A as Actor>::Context)
[src]
impl<F> IntoActorFuture for F where
F: ActorFuture,
[src]
F: ActorFuture,
type Future = F
The future that this type can be converted into.
type Item = <F as ActorFuture>::Item
The item that the future may resolve with.
type Error = <F as ActorFuture>::Error
The error that the future may resolve with.
type Actor = <F as ActorFuture>::Actor
The actor within which this future runs