Threadpool).See: Description
| Interface | Description |
|---|---|
| Lockable |
| Class | Description |
|---|---|
| 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 | Description |
|---|---|
| DeadlockException |
Class used for exceptions created by deadlocks in
LockSupport. |
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