org.apache.axis2.util.threadpool
Class ThreadPool
java.lang.Object
org.apache.axis2.util.threadpool.ThreadPool
- All Implemented Interfaces:
- ThreadFactory
public class ThreadPool
- extends Object
- implements ThreadFactory
This the thread pool for axis2. This class will be used a singleton
across axis2 engine. ThreadPool
is accepts AxisWorkers
which has
run method on them and execute this method, using one of the threads
in the thread pool.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SLEEP_INTERVAL
protected static long SLEEP_INTERVAL
executor
protected ThreadPoolExecutor executor
ThreadPool
public ThreadPool()
ThreadPool
public ThreadPool(int corePoolSize,
int maxPoolSize)
getExecutor
public Executor getExecutor()
setExecutor
public void setExecutor(ThreadPoolExecutor executor)
execute
public void execute(Runnable worker)
- Specified by:
execute
in interface ThreadFactory
forceShutDown
public void forceShutDown()
- A forceful shutdown mechanism for thread pool.
safeShutDown
public void safeShutDown()
throws AxisFault
- This is the recommended shutdown method for the thread pool
This will wait till all the workers that are already handed over to the
thread pool get executed.
- Throws:
AxisFault
createDefaultExecutor
protected ThreadPoolExecutor createDefaultExecutor(String name,
int priority,
boolean daemon)
Copyright © 2004-2012 The Apache Software Foundation. All Rights Reserved.