Struct actix::utils::IntervalFunc[][src]

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

An ActorStream that periodically runs a function in the actor's context.

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

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

struct MyActor;

impl MyActor {
    fn tick(&mut self, context: &mut Context<Self>) {
        println!("tick");
    }
}

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

   fn started(&mut self, context: &mut Context<Self>) {
       // spawn an interval stream into our context
       IntervalFunc::new(Duration::from_millis(100), Self::tick)
           .finish()
           .spawn(context);
   }
}

Methods

impl<A: Actor> IntervalFunc<A>
[src]

Creates a new IntervalFunc with the given interval duration.

Trait Implementations

impl<A: Actor> ActorStream for IntervalFunc<A>
[src]

The type of item this stream will yield on success.

The type of error this stream may generate.

The actor within which this stream runs.

Converts a stream of type T to a stream of type U.

Converts a stream of error type T to a stream of error type E.

Chain on a computation for when a value is ready, passing the resulting item to the provided closure f. Read more

Chain on a computation for when a value is ready, passing the successful results to the provided closure f. Read more

Execute an accumulating computation over a stream, collecting all the values into one final result. Read more

Add timeout to stream. Read more

Converts a stream to a future that resolves when stream finishes.

Auto Trait Implementations

impl<A> !Send for IntervalFunc<A>

impl<A> !Sync for IntervalFunc<A>