| java.lang.Object org.lateralnz.common.util.Queue
Queue | public class Queue implements Serializable,Constants(Code) | | a simple queue with a synchronized getter that returns (and removes)
the first object in the list (ie. FIFO). This has an option to support notify()/wait()
author: J R Briggs |
Constructor Summary | |
public | Queue() | public | Queue(boolean blocking) | public | Queue(int cleanupSize) | public | Queue(int cleanupSize, boolean blocking) |
Queue | public Queue(boolean blocking)(Code) | | |
Queue | public Queue(int cleanupSize)(Code) | | |
Queue | public Queue(int cleanupSize, boolean blocking)(Code) | | |
getSize | public int getSize()(Code) | | |
|
|