Click or drag to resize
Akka.NETIStash Interface
Public interface used to expose stash capabilities to user-level actors

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface IStash

The IStash type exposes the following members.

Methods
  NameDescription
Public methodClearStash
Returns all messages and clears the stash. The stash is guaranteed to be empty afterwards.
Public methodPrepend
TBD
Public methodStash
Stashes the current message (the message that the actor received last)
Public methodUnstash
Unstash the oldest message in the stash and prepends it to the actor's mailbox. The message is removed from the stash.
Public methodUnstashAll
Unstashes all messages by prepending them to the actor's mailbox. The stash is guaranteed to be empty afterwards.
Public methodUnstashAll(FuncEnvelope, Boolean)
Unstashes all messages selected by the predicate function. Other messages are discarded. The stash is guaranteed to be empty afterwards.
Top
See Also