Merge pull request #20034 from akka/wip-19949-ANQ.count-loop-RK

fix endless loop race condition in NodeQueue, #19949
This commit is contained in:
Roland Kuhn 2016-03-17 10:54:03 +01:00
commit 2bc2dcb14a
5 changed files with 182 additions and 39 deletions

View file

@ -124,7 +124,9 @@ Akka comes shipped with a number of mailbox implementations:
* **SingleConsumerOnlyUnboundedMailbox**
- Backed by a very efficient Multiple-Producer Single-Consumer queue, cannot be used with ``BalancingDispatcher``
This queue may or may not be faster than the default one depending on your use-case—be sure to benchmark properly!
- Backed by a Multiple-Producer Single-Consumer queue, cannot be used with ``BalancingDispatcher``
- Blocking: No

View file

@ -124,7 +124,9 @@ Akka comes shipped with a number of mailbox implementations:
* **SingleConsumerOnlyUnboundedMailbox**
- Backed by a very efficient Multiple-Producer Single-Consumer queue, cannot be used with ``BalancingDispatcher``
This queue may or may not be faster than the default one depending on your use-case—be sure to benchmark properly!
- Backed by a Multiple-Producer Single-Consumer queue, cannot be used with ``BalancingDispatcher``
- Blocking: No