Package org.ws4d.java.concurrency

Creates a simple threadpool which supports dynamic adding and removing of threads, as well as automatic disposal of idle threads after a set time (Threadpool).

See:
          Description

Interface Summary
Lockable  
 

Class Summary
LockSupport Implementation of a multiple-readers/single-writer lock support.
ThreadPool Implements a simple thread pool which allows dynamic creation of worker threads and automatic disposal of unused worker threads after the given period of time.
 

Exception Summary
DeadlockException Class used for exceptions created by deadlocks in LockSupport.
 

Package org.ws4d.java.concurrency Description

Creates a simple threadpool which supports dynamic adding and removing of threads, as well as automatic disposal of idle threads after a set time (Threadpool). Also provides an interface Lockable and an implementation LockSupport providing multiple-readers/single-writer lock support