org.sape.carbon.services.threadpool |
|
Java Source File Name | Type | Comment |
DefaultThreadPoolImpl.java | Class | This implementation of ThreadPool relys on Doug Lea's PooledExecutor thread
pool thread pool implementation. |
QueueFullPolicyEnum.java | Class | This Class enumerates the different policies that can be used when the
thread pool queue is full and a client attempts to queue a task. |
TaskCallback.java | Interface | This interface should be implemented by clients who want to take some action
when a task is complete. |
TaskInfo.java | Interface | An object that implements this interface is returned by the ThreadPool
execute methods. |
TaskInfoImpl.java | Class | Besides supplying the functionality described by the TaskInfo interface,
this implementation also is responsible for making callbacks using the
TaskCallback interface if a callback has been specified. |
TaskStatusEnum.java | Class | This class enumerates the possible task states. |
ThreadPool.java | Interface | Thread pool components manage a number of Threads that can be used to
execute miscellaneous tasks. |
ThreadPoolConfiguration.java | Interface | Configuration for the DefaultThreadPoolImpl. |
ThreadPoolRuntimeException.java | Class | Exception thrown when there is a problem queuing a task for execution. |