Trait actix::prelude::ActorContext[][src]

pub trait ActorContext: Sized {
    fn stop(&mut self);
fn terminate(&mut self);
fn state(&self) -> ActorState; }
[]

Actor execution context

Each actor runs within specific execution context. Actor::Context defines context. Execution context defines type of execution, actor communication channels (message handling).

Required Methods

[]

Immediately stop processing incoming messages and switch to a stopping state

[]

Terminate actor execution

[]

Actor execution state

Implementors