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

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

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
    E: Send + 'static,
    I: Send + 'static, 
[src]

Execute enclosed function

Trait Implementations

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

Execute message response

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

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

The type of value that this handle will return

Method is called for every message received by this Actor

Auto Trait Implementations

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

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