### Motivation Add a `BlockingQueue` implementation that is suitable for low latency and low contention.
Key points: * Optimized for multiple producers and single consumer * When waiting for entries, the thread is blocked with busy wait to avoid context switch. (This will be used in subsequent PRs to optionally enable it) [ Full content available at: https://github.com/apache/bookkeeper/pull/1682 ] This message was relayed via gitbox.apache.org for [email protected]
