Trait actix::registry::SystemService[][src]

pub trait SystemService: Actor<Context = Context<Self>> + Supervised + Default {
    fn start_service(wrk: &ArbiterHandle) -> Addr<Self> { ... }
fn service_started(&mut self, ctx: &mut Context<Self>) { ... }
fn from_registry() -> Addr<Self> { ... } }
Expand description

Trait defines system’s service.

Provided methods

Construct and start system service

Method is called during service initialization.

Get actor’s address from system registry

Implementors