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

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

impl<Msg: Message> SysTell for ActorRef<Msg>
[src]

impl<Msg: Message> SysTell for ActorSelection<Msg>
[src]