[][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

type Msg: Message

Loading content...

Required methods

fn sys_tell(
    &self,
    sys_msg: SystemMsg<Self::Msg>,
    sender: Option<ActorRef<Self::Msg>>
)

Loading content...

Implementors

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

type Msg = Msg

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

type Msg = Msg

Loading content...