public final class SynchronizedPriorityQueue extends Object implements PriorityQueue
Modifier and Type | Field and Description |
---|---|
protected PriorityQueue |
m_priorityQueue
Deprecated.
The underlying priority queue.
|
Constructor and Description |
---|
SynchronizedPriorityQueue(PriorityQueue priorityQueue)
Deprecated.
Constructs a new synchronized priority queue.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Deprecated.
Clear all elements from queue.
|
void |
insert(Object element)
Deprecated.
Insert an element into queue.
|
boolean |
isEmpty()
Deprecated.
Test if queue is empty.
|
Object |
peek()
Deprecated.
Return element on top of heap but don't remove it.
|
Object |
pop()
Deprecated.
Return element on top of heap and remove it.
|
String |
toString()
Deprecated.
Returns a string representation of the underlying queue.
|
protected final PriorityQueue m_priorityQueue
public SynchronizedPriorityQueue(PriorityQueue priorityQueue)
priorityQueue
- the priority queue to synchronizepublic void clear()
clear
in interface PriorityQueue
public boolean isEmpty()
isEmpty
in interface PriorityQueue
public void insert(Object element)
insert
in interface PriorityQueue
element
- the element to be insertedpublic Object peek() throws NoSuchElementException
peek
in interface PriorityQueue
NoSuchElementException
- if isEmpty() == truepublic Object pop() throws NoSuchElementException
pop
in interface PriorityQueue
NoSuchElementException
- if isEmpty() == trueCopyright © 2001–2015 The Apache Software Foundation. All rights reserved.