|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
org.quartz.simpl Class SimpleThreadPool
java.lang.Object org.quartz.simpl.SimpleThreadPool
- All Implemented Interfaces:
- org.quartz.spi.ThreadPool
public class SimpleThreadPool
- extends Object
- implements org.quartz.spi.ThreadPool
This is class is a simple implementation of a thread pool, based on the
ThreadPool
interface.
Runnable
objects are sent to the pool with the runInThread(Runnable)
method, which blocks until a Thread
becomes available.
The pool has a fixed number of Thread
s, and does not grow or
shrink based on demand.
- Author:
- James House, Juergen Donnerstag
Constructor Summary | |
---|---|
SimpleThreadPool()
Create a new (unconfigured) SimpleThreadPool . |
|
SimpleThreadPool(int threadCount,
int threadPriority)
Create a new SimpleThreadPool with the specified number
of Thread s that have the given priority. |
Method Summary | |
---|---|
int |
blockForAvailableThreads()
|
protected void |
clearFromBusyWorkersList(org.quartz.simpl.SimpleThreadPool.WorkerThread wt)
|
protected List<org.quartz.simpl.SimpleThreadPool.WorkerThread> |
createWorkerThreads(int count)
|
org.slf4j.Logger |
getLog()
|
int |
getPoolSize()
|
int |
getThreadCount()
Get the number of worker threads in the pool. |
String |
getThreadNamePrefix()
|
int |
getThreadPriority()
Get the thread priority of worker threads in the pool. |
void |
initialize()
|
boolean |
isMakeThreadsDaemons()
|
boolean |
isThreadsInheritContextClassLoaderOfInitializingThread()
|
boolean |
isThreadsInheritGroupOfInitializingThread()
|
protected void |
makeAvailable(org.quartz.simpl.SimpleThreadPool.WorkerThread wt)
|
boolean |
runInThread(Runnable runnable)
Run the given Runnable object in the next available
Thread . |
void |
setInstanceId(String schedInstId)
|
void |
setInstanceName(String schedName)
|
void |
setMakeThreadsDaemons(boolean makeThreadsDaemons)
|
void |
setThreadCount(int count)
Set the number of worker threads in the pool - has no effect after initialize() has been called. |
void |
setThreadNamePrefix(String prfx)
|
void |
setThreadPriority(int prio)
Set the thread priority of worker threads in the pool - has no effect after initialize() has been called. |
void |
setThreadsInheritContextClassLoaderOfInitializingThread(boolean inheritLoader)
|
void |
setThreadsInheritGroupOfInitializingThread(boolean inheritGroup)
|
void |
shutdown()
Terminate any worker threads in this thread group. |
void |
shutdown(boolean waitForJobsToComplete)
Terminate any worker threads in this thread group. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
SimpleThreadPool
public SimpleThreadPool()
Create a new (unconfigured)
SimpleThreadPool
.- See Also:
setThreadCount(int)
,setThreadPriority(int)
SimpleThreadPool
public SimpleThreadPool(int threadCount, int threadPriority)
Create a new
SimpleThreadPool
with the specified number ofThread
s that have the given priority.- Parameters:
threadCount
- the number of workerThreads
in the pool, must be > 0.threadPriority
- the thread priority for the worker threads.- See Also:
Thread
Method Detail |
---|
getLog
public org.slf4j.Logger getLog()
getPoolSize
public int getPoolSize()
- Specified by:
getPoolSize
in interfaceorg.quartz.spi.ThreadPool
setThreadCount
public void setThreadCount(int count)
Set the number of worker threads in the pool - has no effect after
initialize()
has been called.
getThreadCount
public int getThreadCount()
Get the number of worker threads in the pool.
setThreadPriority
public void setThreadPriority(int prio)
Set the thread priority of worker threads in the pool - has no effect after
initialize()
has been called.
getThreadPriority
public int getThreadPriority()
Get the thread priority of worker threads in the pool.
setThreadNamePrefix
public void setThreadNamePrefix(String prfx)
getThreadNamePrefix
public String getThreadNamePrefix()
isThreadsInheritContextClassLoaderOfInitializingThread
public boolean isThreadsInheritContextClassLoaderOfInitializingThread()
- Returns:
- Returns the threadsInheritContextClassLoaderOfInitializingThread.
setThreadsInheritContextClassLoaderOfInitializingThread
public void setThreadsInheritContextClassLoaderOfInitializingThread(boolean inheritLoader)
- Parameters:
inheritLoader
- The threadsInheritContextClassLoaderOfInitializingThread to set.
isThreadsInheritGroupOfInitializingThread
public boolean isThreadsInheritGroupOfInitializingThread()
setThreadsInheritGroupOfInitializingThread
public void setThreadsInheritGroupOfInitializingThread(boolean inheritGroup)
isMakeThreadsDaemons
public boolean isMakeThreadsDaemons()
- Returns:
- Returns the value of makeThreadsDaemons.
setMakeThreadsDaemons
public void setMakeThreadsDaemons(boolean makeThreadsDaemons)
- Parameters:
makeThreadsDaemons
- The value of makeThreadsDaemons to set.
setInstanceId
public void setInstanceId(String schedInstId)
- Specified by:
setInstanceId
in interfaceorg.quartz.spi.ThreadPool
setInstanceName
public void setInstanceName(String schedName)
- Specified by:
setInstanceName
in interfaceorg.quartz.spi.ThreadPool
initialize
public void initialize() throws SchedulerConfigException
- Specified by:
initialize
in interfaceorg.quartz.spi.ThreadPool
- Throws:
SchedulerConfigException
createWorkerThreads
protected List<org.quartz.simpl.SimpleThreadPool.WorkerThread> createWorkerThreads(int count)
shutdown
public void shutdown()
Terminate any worker threads in this thread group.
Jobs currently in progress will complete.
shutdown
public void shutdown(boolean waitForJobsToComplete)
Terminate any worker threads in this thread group.
Jobs currently in progress will complete.
- Specified by:
shutdown
in interfaceorg.quartz.spi.ThreadPool
runInThread
public boolean runInThread(Runnable runnable)
Run the given
Runnable
object in the next availableThread
. If while waiting the thread pool is asked to shut down, the Runnable is executed immediately within a new additional thread.- Specified by:
runInThread
in interfaceorg.quartz.spi.ThreadPool
- Parameters:
runnable
- theRunnable
to be added.
blockForAvailableThreads
public int blockForAvailableThreads()
- Specified by:
blockForAvailableThreads
in interfaceorg.quartz.spi.ThreadPool
makeAvailable
protected void makeAvailable(org.quartz.simpl.SimpleThreadPool.WorkerThread wt)
clearFromBusyWorkersList
protected void clearFromBusyWorkersList(org.quartz.simpl.SimpleThreadPool.WorkerThread wt)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 2001-2011, Terracotta, Inc.