Trait riker::actor::SysTell[][src]

pub trait SysTell {
    type Msg: Message;
    fn sys_tell(
        &self,
        sys_msg: SystemMsg<Self::Msg>,
        sender: Option<ActorRef<Self::Msg>>
    ); }

Implement to provide system message routing to actors, e.g. ActorRef and ActorSelection

Associated Types

Required Methods

Implementors