+act - #15501 - Adding support for a Non-blocking, bounded, MPMC mailbox called 'NonBlockingBoundedMailbox'

This commit is contained in:
Viktor Klang 2014-07-05 10:34:11 +02:00
parent 7f92d2747e
commit 945fde4294
5 changed files with 317 additions and 26 deletions

View file

@ -131,6 +131,16 @@ Akka comes shipped with a number of mailbox implementations:
- Configuration name: "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
* NonBlockingBoundedMailbox
- Backed by a very efficient MultiPle-Producer Multiple-Consumer queue
- Blocking: No
- Bounded: Yes
- Configuration name: "akka.dispatch.NonBlockingBoundedMailbox"
* BoundedMailbox
- Backed by a ``java.util.concurrent.LinkedBlockingQueue``