|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||
java.lang.Object | +--org.apache.commons.collections.SynchronizedPriorityQueue
A thread safe version of the PriorityQueue. Provides synchronized wrapper methods for all the methods defined in the PriorityQueue interface.
| Field Summary | |
protected PriorityQueue |
m_priorityQueue
The underlying priority queue. |
| Constructor Summary | |
SynchronizedPriorityQueue(PriorityQueue priorityQueue)
Constructs a new synchronized priority queue. |
|
| Method Summary | |
void |
clear()
Clear all elements from queue. |
void |
insert(Object element)
Insert an element into queue. |
boolean |
isEmpty()
Test if queue is empty. |
Object |
peek()
Return element on top of heap but don't remove it. |
Object |
pop()
Return element on top of heap and remove it. |
String |
toString()
Returns a string representation of the underlying queue. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
protected final PriorityQueue m_priorityQueue
| Constructor Detail |
public SynchronizedPriorityQueue(PriorityQueue priorityQueue)
priorityQueue - the priority queue to synchronize| Method Detail |
public void clear()
clear in interface PriorityQueuepublic void insert(Object element)
insert in interface PriorityQueueelement - the element to be insertedpublic boolean isEmpty()
isEmpty in interface PriorityQueue
public Object peek()
throws NoSuchElementException
peek in interface PriorityQueueNoSuchElementException - if isEmpty() == true
public Object pop()
throws NoSuchElementException
pop in interface PriorityQueueNoSuchElementException - if isEmpty() == truepublic String toString()
toString in class Object
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||