pub trait SystemService: Actor<Context = Context<Self>> + Supervised + Default {
    fn start_service(sys: &Addr<Arbiter>) -> 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