[][src]Struct riker::actor::EventsChannel

pub struct EventsChannel(_);

A specialized channel that publishes messages as system messages

Methods

impl EventsChannel[src]

pub fn new() -> Self[src]

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

Trait Implementations

impl Actor for EventsChannel[src]

type Msg = ChannelMsg<SystemEvent>

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 Receive<ChannelMsg<SystemEvent>> for EventsChannel[src]

type Msg = ChannelMsg<SystemEvent>

impl Receive<Publish<SystemEvent>> for EventsChannel[src]

type Msg = ChannelMsg<SystemEvent>

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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]