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

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

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

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