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
fn stop(&mut self)
Immediately stop processing incoming messages and switch to a
stopping
state
fn terminate(&mut self)
Terminate actor execution
fn state(&self) -> ActorState
Actor execution state
Implementors
impl<A> ActorContext for Context<A> where
A: Actor<Context = Self>,impl<A> ActorContext for SyncContext<A> where
A: Actor<Context = Self>,