|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.util.TaskQueue
Field Summary | |
private TimerTask[] |
queue
Priority queue represented as a balanced binary heap: the two children of queue[n] are queue[2*n] and queue[2*n+1]. |
private int |
size
The number of tasks in the priority queue. |
Constructor Summary | |
(package private) |
TaskQueue()
|
Method Summary | |
(package private) void |
add(TimerTask task)
Adds a new task to the priority queue. |
(package private) void |
clear()
Removes all elements from the priority queue. |
private void |
fixDown(int k)
Establishes the heap invariant (described above) in the subtree rooted at k, which is assumed to satisfy the heap invariant except possibly for node k itself (which may have a nextExecutionTime greater than its children's). |
private void |
fixUp(int k)
Establishes the heap invariant (described above) assuming the heap satisfies the invariant except possibly for the leaf-node indexed by k (which may have a nextExecutionTime less than its parent's). |
(package private) TimerTask |
getMin()
Return the "head task" of the priority queue. |
(package private) boolean |
isEmpty()
Returns true if the priority queue contains no elements. |
(package private) void |
removeMin()
Remove the head task from the priority queue. |
(package private) void |
rescheduleMin(long newTime)
Sets the nextExecutionTime associated with the head task to the specified value, and adjusts priority queue accordingly. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
private TimerTask[] queue
private int size
Constructor Detail |
TaskQueue()
Method Detail |
void add(TimerTask task)
TimerTask getMin()
void removeMin()
void rescheduleMin(long newTime)
boolean isEmpty()
void clear()
private void fixUp(int k)
private void fixDown(int k)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |