Package jason.core.pool

Interface Summary
Task Any work encapsulated in a ThreadCapsule must implement this interface.
ThreadCapsule  
ThreadPool This interface is implemented by the class which shall be the main engine for thread pool in this case ThreadPool.
 

Class Summary
AbstractTask Created Sat Apr 20 20:11:18 2002 Simple Task
SocketTask Created Fri May 24 15:17:41 2002 This class is a task for handling a user Socket.
TaskContext Created Sat Apr 20 19:33:30 2002 TaskContext for the init method of the Task interface.
ThreadCapsuleImpl  
ThreadPoolImpl This program is an generic implementation of thread pool engine, which takes the following input a) Size of the pool to be constructed b) Name of the class which implements Runnable (which has a visible default constructor) and constructs a thread pool with active threads that are waiting for activation.
ThreadPoolTest