You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We call Stash.Unstash() to pop off the message at the top of the Stash.
SHOULD BE
We call Stash.Unstash() to pop off the oldest message message at the top of the Stash.
The text was updated successfully, but these errors were encountered:
But if I understand in correctly, Stash.Stash() specifically doesn't pop off the oldest message - it pops off the last message placed on the stash. To have the "oldest" message (first message placed on the stash) processed first by the actor, you'd have to use UnstashAll(), which preserves the FIFO ordering of the stash.
in https://github.com/petabridge/akka-bootcamp/blob/master/src/Unit-2/lesson5/README.md
We call Stash.Unstash() to pop off the message at the top of the Stash.
SHOULD BE
We call Stash.Unstash() to pop off the oldest message message at the top of the Stash.
The text was updated successfully, but these errors were encountered: