| IStash Interface |
Namespace: Akka.Actor
The IStash type exposes the following members.
| Name | Description | |
|---|---|---|
| ClearStash |
Returns all messages and clears the stash.
The stash is guaranteed to be empty afterwards.
| |
| Prepend |
TBD
| |
| Stash |
Stashes the current message (the message that the actor received last)
| |
| Unstash |
Unstash the oldest message in the stash and prepends it to the actor's mailbox.
The message is removed from the stash.
| |
| UnstashAll |
Unstashes all messages by prepending them to the actor's mailbox.
The stash is guaranteed to be empty afterwards.
| |
| UnstashAll(FuncEnvelope, Boolean) |
Unstashes all messages selected by the predicate function. Other messages are discarded.
The stash is guaranteed to be empty afterwards.
|