Uses of Class
net.groboclown.util.datastruct.v1.SynchQueue

Packages that use SynchQueue
net.groboclown.gui.paintpipe.v1 A framework for building a GUI that paints an image in a separate thread, with various components rendering parts of the image in their own threads. 
net.groboclown.gui.timeBoundPaint.v1 A framework for allowing a separate thread to paint an image, with a maximum amount of time the thread can dedicate per image. 
net.groboclown.util.datastruct.v1 Various unusual or very helpful data structures, written like the collections classes. 
net.groboclown.util.datastruct.v1.tests   
net.groboclown.util.thread.v1 A collection of classes to aid in speeding the development of threaded applications. 
 

Uses of SynchQueue in net.groboclown.gui.paintpipe.v1
 

Fields in net.groboclown.gui.paintpipe.v1 declared as SynchQueue
private  SynchQueue PaintQueue.tq
           
 

Constructors in net.groboclown.gui.paintpipe.v1 with parameters of type SynchQueue
PaintQueue(SynchQueue queue)
          Uses the given queue as the internal representation of a queue.
 

Uses of SynchQueue in net.groboclown.gui.timeBoundPaint.v1
 

Fields in net.groboclown.gui.timeBoundPaint.v1 declared as SynchQueue
private  SynchQueue TimeBoundPainter.q
           
private  SynchQueue ThreadPainter.q
           
 

Constructors in net.groboclown.gui.timeBoundPaint.v1 with parameters of type SynchQueue
TimeBoundPainter(Image img, SynchQueue q)
           
ThreadPainter(Image img, SynchQueue q, int zorder)
           
 

Uses of SynchQueue in net.groboclown.util.datastruct.v1
 

Fields in net.groboclown.util.datastruct.v1 declared as SynchQueue
private  SynchQueue ObjectCache.cache
          We use a synch queue to optimize the store of objects
 

Uses of SynchQueue in net.groboclown.util.datastruct.v1.tests
 

Fields in net.groboclown.util.datastruct.v1.tests declared as SynchQueue
private  SynchQueue TestSynchQueue.PutObjects.m_sq
           
private  SynchQueue TestSynchQueue.CheckSize.m_sq
           
private  SynchQueue TestSynchQueue.GetObjects.m_sq
           
 

Constructors in net.groboclown.util.datastruct.v1.tests with parameters of type SynchQueue
TestSynchQueue.PutObjects(SynchQueue sq, Object[] list, long delayMillis)
           
TestSynchQueue.CheckSize(SynchQueue sq, int maxSize)
           
TestSynchQueue.GetObjects(SynchQueue sq, Object[] expectedlist, long delayMillis, TestSynchQueue.CheckSize cs)
           
TestSynchQueue.GetObjects(SynchQueue sq, Object[] expectedlist, long delayMillis, long waitTime, int nanos, TestSynchQueue.CheckSize cs)
           
 

Uses of SynchQueue in net.groboclown.util.thread.v1
 

Fields in net.groboclown.util.thread.v1 declared as SynchQueue
private  SynchQueue ThreadPool.m_sharedQueue
           
private  SynchQueue QueueThread.m_queue
           
 

Methods in net.groboclown.util.thread.v1 that return SynchQueue
 SynchQueue QueueThread.getQueue()
          Retrieves the internal listened queue.
 

Methods in net.groboclown.util.thread.v1 with parameters of type SynchQueue
protected  void QueueThread.initialize(IObjectListener ol, SynchQueue sq)
           
 

Constructors in net.groboclown.util.thread.v1 with parameters of type SynchQueue
QueueThread(IObjectListener ol, SynchQueue sq)
           
QueueThread(IObjectListener ol, SynchQueue sq, ThreadGroup tg)
           
QueueThread(IObjectListener ol, SynchQueue sq, String threadName)
           
QueueThread(IObjectListener ol, SynchQueue sq, ThreadGroup tg, String threadName)
           
 



Written under the LGPL