public interface ConcurrentQueue<V>
| Modifier and Type | Interface and Description |
|---|---|
static interface |
ConcurrentQueue.Handle<V>
A Handle provides the capability to delete an element of a ConcurrentQueue
very quickly.
|
| Modifier and Type | Method and Description |
|---|---|
ConcurrentQueue.Handle<V> |
offer(V arg)
Add a new element to the tail of the queue.
|
ConcurrentQueue.Handle<V> |
peek()
Return the handle for the head of the queue.
|
ConcurrentQueue.Handle<V> |
poll()
Return the handle for the head of the queue.
|
int |
size()
Return the number of elements in the queue.
|
int size()
ConcurrentQueue.Handle<V> offer(V arg)
ConcurrentQueue.Handle<V> poll()
ConcurrentQueue.Handle<V> peek()
Copyright © 2017–2019 Eclipse Foundation. All rights reserved.