Class SynchronizedQueue<T>
java.lang.Object
org.apache.tomcat.util.collections.SynchronizedQueue<T>
- Type Parameters:
T- The type of object managed by this queue
This is intended as a (mostly) GC-free alternative to
ConcurrentLinkedQueue when the
requirement is to create an unbounded queue with no requirement to shrink the queue. The aim is to provide the bare
minimum of required functionality as quickly as possible with minimum garbage.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe default initial capacity for a new queue. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new SynchronizedQueue with the default initial capacity.SynchronizedQueue(int initialSize) Constructs a new SynchronizedQueue with the specified initial capacity. -
Method Summary
-
Field Details
-
DEFAULT_SIZE
public static final int DEFAULT_SIZEThe default initial capacity for a new queue.- See Also:
-
-
Constructor Details
-
SynchronizedQueue
public SynchronizedQueue()Constructs a new SynchronizedQueue with the default initial capacity. -
SynchronizedQueue
public SynchronizedQueue(int initialSize) Constructs a new SynchronizedQueue with the specified initial capacity.- Parameters:
initialSize- the initial capacity
-
-
Method Details
-
offer
Adds the specified element to the tail of this queue.- Parameters:
t- the element to add- Returns:
- true (as specified by
Queue.offer(E))
-
poll
Retrieves and removes the head of this queue, or returns null if this queue is empty.- Returns:
- the head of this queue, or null if empty
-
size
public int size()Returns the number of elements in this queue.- Returns:
- the number of elements
-
clear
public void clear()Removes all elements from this queue.
-