Method Summary |
|
public Object | dequeue() Dequeue the oldest object on the queue. |
public synchronized Object | dequeue(long timeOut) Dequeue the oldest object on the queue.
Parameters: timeOut - the number of milliseconds to wait for something to arrive. |
public synchronized void | dump(String msg) |
final public synchronized Enumeration | elements() Returns an enumeration of the elements in Last-In, First-Out
order. |
public synchronized void | enqueue(Object obj) Enqueue an object. |
public synchronized boolean | isEmpty() |
final public synchronized Enumeration | reverseElements() Returns an enumeration of the elements in First-In, First-Out
order. |