Trait riker::actor::Tell[][src]

pub trait Tell {
    type Msg: Message;
    fn tell<T>(&self, msg: T, sender: Option<ActorRef<Self::Msg>>)
    where
        T: Into<ActorMsg<Self::Msg>>
; }

Associated Types

Required Methods

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

Implementors