Struct riker::actor::SystemChannel[][src]

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

A specialized actor for providing Publish/Subscribe capabilities for system messages.

Methods

impl<Msg: Message> SystemChannel<Msg>
[src]

Trait Implementations

impl<Msg: Message> Actor for SystemChannel<Msg>
[src]

Invoked when an actor is being started by the system. Read more

Invoked when an actor receives a Riker predefined message Read more

Invoked when an actor receives a Riker system message Read more

Invoked when an actor receives a message Read more

Invoked after an actor has started. Read more

Invoked after an actor has been stopped.

Return a Some(PersistenceConf) to enable actor persistence. Read more

Invoked after an event is successfully inserted into the event store. Read more

Invoked for each event when the actor is recovering. Read more

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

Auto Trait Implementations

impl<Msg> Send for SystemChannel<Msg>

impl<Msg> Sync for SystemChannel<Msg>