| Interface | Description |
|---|---|
| Queue<E> |
Interface for queues (FIFO).
|
| Stack<E> |
Interface for a stack (LIFO).
|
| Class | Description |
|---|---|
| Concurrent |
Factory to create implementations.
|
| ConcurrentQueue<E> |
Queue implemented with compare-and-set algorithm from Brian Goetz.
|
| ConcurrentQueue.Entry<T> |
Linked list entry.
|
| ConcurrentStack<E> |
Stack implemented with compare-and-set algorithm from Brian Goetz.
|
| ConcurrentStack.Entry<T> |
Linked list entry.
|
This package is a part of the open-source Commons lib.
Copyright © 2014 Sven Strittmatter. All Rights Reserved.