Class WorkerPoolFactory
- java.lang.Object
-
- org.apache.axis2.transport.base.threads.WorkerPoolFactory
-
public class WorkerPoolFactory extends Object
Worker pool factory. For the moment this always createsNativeWorkerPool
instances since we assume that we are running on Java 1.5 or above.
-
-
Constructor Summary
Constructors Constructor Description WorkerPoolFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WorkerPool
getWorkerPool(int core, int max, int keepAlive, int queueLength, int waterMark, String threadGroupName, String threadGroupId)
static WorkerPool
getWorkerPool(int core, int max, int keepAlive, int queueLength, String threadGroupName, String threadGroupId)
static WorkerPool
getWorkerPool(int core, int max, int keepAlive, int queueLength, String threadGroupName, String threadGroupId, BlockingQueue<Runnable> queue)
-
-
-
Method Detail
-
getWorkerPool
public static WorkerPool getWorkerPool(int core, int max, int keepAlive, int queueLength, String threadGroupName, String threadGroupId)
-
getWorkerPool
public static WorkerPool getWorkerPool(int core, int max, int keepAlive, int queueLength, int waterMark, String threadGroupName, String threadGroupId)
-
getWorkerPool
public static WorkerPool getWorkerPool(int core, int max, int keepAlive, int queueLength, String threadGroupName, String threadGroupId, BlockingQueue<Runnable> queue)
-
-