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 a specific execution context. The actor’s associated type Actor::Context defines the context to use for the actor, and must implement the ActorContext trait.

The execution context defines the type of execution, and the actor’s communication channels (message handling).

Required methods

Immediately stop processing incoming messages and switch to a stopping state. This only affects actors that are currently running. Future attempts to queue messages will fail.

Terminate actor execution unconditionally. This sets the actor into the stopped state. This causes future attempts to queue messages to fail.

Retrieve the current Actor execution state.

Implementors