Class ConcurrentLinkedBlockingQueue<E>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractQueue<E>
com.linkedin.alpini.base.concurrency.ConcurrentLinkedBlockingQueue<E>
Type Parameters:
E - content type
All Implemented Interfaces:
Iterable<E>, Collection<E>, BlockingQueue<E>, Queue<E>

public class ConcurrentLinkedBlockingQueue<E> extends AbstractQueue<E> implements BlockingQueue<E>
A BlockingQueue implementation which uses a collection of concurrent Queues per thread in order to reduce the hotspot of a highly contended mutex or atomic reference.