ThreadPool |
ThreadPoolFactory.create(int minSize,
int maxSize,
long timeout,
java.lang.String threadpoolName) |
Create a bounded thread pool in the current thread group
with the current context ClassLoader as the worker thread default
ClassLoader.
|
ThreadPool |
ThreadPoolFactory.create(int minSize,
int maxSize,
long timeout,
java.lang.String threadpoolName,
java.lang.ClassLoader defaultClassLoader) |
Create a bounded thread pool in the current thread group
with the given ClassLoader as the worker thread default
ClassLoader.
|
ThreadPool |
ThreadPoolFactory.create(java.lang.String threadpoolName) |
Create an unbounded thread pool in the current thread group
with the current context ClassLoader as the worker thread default
ClassLoader.
|
ThreadPool |
ThreadPoolFactory.create(java.lang.ThreadGroup tg,
java.lang.String threadpoolName) |
Create an unbounded thread pool in the given thread group
with the current context ClassLoader as the worker thread default
ClassLoader.
|
ThreadPool |
ThreadPoolFactory.create(java.lang.ThreadGroup tg,
java.lang.String threadpoolName,
java.lang.ClassLoader defaultClassLoader) |
Create an unbounded thread pool in the given thread group
with the given ClassLoader as the worker thread default
ClassLoader.
|
ThreadPool |
ThreadPoolManager.getDefaultThreadPool() |
Returns the first instance of ThreadPool in the ThreadPoolManager
|
ThreadPool |
ThreadPoolChooser.getThreadPool() |
This method is used to return an instance of ThreadPool based on the
strategy/policy implemented in the ThreadPoolChooser from the set of
ThreadPools allowed to be used by the ORB.
|
ThreadPool |
ThreadPoolChooser.getThreadPool(int id) |
This method is used to return an instance of ThreadPool that is obtained
by using the id argument passed to it.
|
ThreadPool |
ThreadPoolManager.getThreadPool(int numericIdForThreadpool) |
This method will return an instance of the threadpool given a numeric threadpoolId.
|
ThreadPool |
ThreadPoolManager.getThreadPool(java.lang.String threadpoolId) |
This method will return an instance of the threadpool given a threadpoolId,
that can be used by any component in the app.
|
ThreadPool |
WorkQueue.getThreadPool() |
Get the ThreadPool instance servicing this WorkQueue
|