Struct actix::msgs::Execute[][src]

pub struct Execute<I: Send + 'static = (), E: Send + 'static = ()>(_);

Execute function in arbiter's thread

Arbiter` actor handles Execute message.

Example

use actix::prelude::*;

struct MyActor {
    addr: Addr<Arbiter>,
}

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

    fn started(&mut self, ctx: &mut Context<Self>) {
        self.addr
            .do_send(actix::msgs::Execute::new(|| -> Result<(), ()> {
                // do something
                // ...
                Ok(())
            }));
    }
}
fn main() {}

Methods

impl<I, E> Execute<I, E> where
    I: Send + 'static,
    E: Send + 'static, 
[src]

Execute enclosed function

Trait Implementations

impl<I: Send, E: Send> Handler<Execute<I, E>> for Arbiter
[src]

The type of value that this handle will return

Method is called for every message received by this Actor

impl<I: Send, E: Send> Message for Execute<I, E>
[src]

Execute message response

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

Auto Trait Implementations

impl<I, E> Send for Execute<I, E>

impl<I = (), E = ()> !Sync for Execute<I, E>