[][src]Struct riker::actor::Channel

pub struct Channel<Msg: Message> { /* fields omitted */ }

A specialized actor for providing Publish/Subscribe capabilities for user level messages

Methods

impl<Msg> Channel<Msg> where
    Msg: Message
[src]

pub fn new() -> Self[src]

pub fn props() -> BoxActorProd<Channel<Msg>>[src]

Trait Implementations

impl<Msg> Actor for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

fn post_start(&mut self, ctx: &Context<Self::Msg>)[src]

Invoked after an actor has started. Read more

fn post_stop(&mut self)[src]

Invoked after an actor has been stopped.

fn supervisor_strategy(&self) -> Strategy[src]

Return a supervisor strategy that will be used when handling failed child actors.

impl<Msg> Receive<ChannelMsg<Msg>> for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

impl<Msg> Receive<Subscribe<Msg>> for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

impl<Msg> Receive<Unsubscribe<Msg>> for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

impl<Msg> Receive<UnsubscribeAll<Msg>> for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

impl<Msg> Receive<Publish<Msg>> for Channel<Msg> where
    Msg: Message
[src]

type Msg = ChannelMsg<Msg>

Auto Trait Implementations

impl<Msg> Send for Channel<Msg>

impl<Msg> Unpin for Channel<Msg>

impl<Msg> !Sync for Channel<Msg>

impl<Msg> !UnwindSafe for Channel<Msg>

impl<Msg> !RefUnwindSafe for Channel<Msg>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]