Uses of Class
org.apache.excalibur.thread.impl.WorkerThread

Packages that use WorkerThread
org.apache.avalon.excalibur.thread.impl   
org.apache.excalibur.thread.impl   
 

Uses of WorkerThread in org.apache.avalon.excalibur.thread.impl
 

Subclasses of WorkerThread in org.apache.avalon.excalibur.thread.impl
(package private)  class SimpleWorkerThread
          This class extends the Thread class to add recyclable functionalities.
 

Methods in org.apache.avalon.excalibur.thread.impl that return WorkerThread
protected  WorkerThread BasicThreadPool.getWorker()
          Retrieve a worker thread from pool.
protected  WorkerThread BasicThreadPool.newWorkerThread(java.lang.String name)
          Overide newWorkerThread to provide a WorkerThread that is Poolable and LogEnabled.
 

Methods in org.apache.avalon.excalibur.thread.impl with parameters of type WorkerThread
protected  void BasicThreadPool.releaseWorker(WorkerThread worker)
          Release worker back into pool.
 

Uses of WorkerThread in org.apache.excalibur.thread.impl
 

Methods in org.apache.excalibur.thread.impl that return WorkerThread
protected  WorkerThread AbstractThreadPool.createWorker()
          Create a WorkerThread and start it up.
protected abstract  WorkerThread AbstractThreadPool.getWorker()
          Retrieve a worker thread from pool.
protected  WorkerThread AbstractThreadPool.newWorkerThread(java.lang.String name)
          Create a new worker for pool.
 

Methods in org.apache.excalibur.thread.impl with parameters of type WorkerThread
protected  void AbstractThreadPool.destroyWorker(WorkerThread thread)
          Destroy a worker thread by scheduling it for shutdown.
protected abstract  void AbstractThreadPool.releaseWorker(WorkerThread worker)
          Return the WorkerThread to the pool.