Trait actix::ActorContext

source ·
pub trait ActorContext: Sized {
    fn stop(&mut self);
    fn terminate(&mut self);
    fn state(&self) -> ActorState;
}
Expand description

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§