[][src]Trait sealrs::actors::stash::AbstractStash

pub trait AbstractStash {
    fn stash(&mut self, msg: &Message, ctx: &ActorContext);
fn unstash_all(&mut self); }

Required methods

fn stash(&mut self, msg: &Message, ctx: &ActorContext)

Put message to the queue

fn unstash_all(&mut self)

Flush all queue (each message will be resend to the stash owner actor)

Loading content...

Implementors

impl AbstractStash for RealStash[src]

Normal version of the stash

impl AbstractStash for StubStash[src]

Loading content...