Method Summary |
|
public synchronized Object | get() Get the first object out of the queue. |
public boolean | isEmpty() |
public Object | peek() Peek to see if something is available. |
public synchronized Object | pull() Pull the first object out of the queue. |
public synchronized void | put(Object object) Put the object into the queue.
Parameters: object - the object to be appended to thequeue. |
public int | size() |
public synchronized void | stop() |