public enum ActorOptions.Overflow
Policy applied when Actor.send is called on an actor whose bounded mailbox is full.
| Enum constant | Description |
|---|---|
BLOCK |
The sending thread blocks until space is available. |
DROP_NEWEST |
The new message is silently dropped. |
FAIL |
Actor.send throws IllegalStateException. |
The sending thread blocks until space is available.
The new message is silently dropped.
Actor.send throws IllegalStateException.
Copyright © 2003-2026 The Apache Software Foundation. All rights reserved.