| Package | Description |
|---|---|
| com.sun.corba.ee.impl.threadpool | |
| com.sun.corba.ee.spi.threadpool |
| Modifier and Type | Class and Description |
|---|---|
class |
ThreadPoolImpl |
| Modifier and Type | Method and Description |
|---|---|
ThreadPool |
ThreadPoolManagerImpl.getDefaultThreadPool()
Returns the first instance of ThreadPool in the ThreadPoolManager
|
ThreadPool |
WorkQueueImpl.getThreadPool() |
ThreadPool |
ThreadPoolManagerImpl.getThreadPool(int numericIdForThreadpool)
This method will return an instance of the threadpool given a numeric threadpoolId.
|
ThreadPool |
ThreadPoolManagerImpl.getThreadPool(String threadpoolId)
This method will return an instance of the threadpool given a threadpoolId,
that can be used by any component in the app.
|
| Modifier and Type | Method and Description |
|---|---|
void |
WorkQueueImpl.setThreadPool(ThreadPool workerThreadPool) |
| Constructor and Description |
|---|
WorkQueueImpl(ThreadPool workerThreadPool) |
WorkQueueImpl(ThreadPool workerThreadPool,
String name) |
| Modifier and Type | Method and Description |
|---|---|
ThreadPool |
ThreadPoolFactory.create(int minSize,
int maxSize,
long timeout,
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,
String threadpoolName,
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(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(ThreadGroup tg,
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(ThreadGroup tg,
String threadpoolName,
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 |
WorkQueue.getThreadPool()
Get the ThreadPool instance servicing this WorkQueue
|
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 |
ThreadPoolManager.getThreadPool(int numericIdForThreadpool)
This method will return an instance of the threadpool given a numeric threadpoolId.
|
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(String threadpoolId)
This method will return an instance of the threadpool given a threadpoolId,
that can be used by any component in the app.
|
| Modifier and Type | Method and Description |
|---|---|
void |
WorkQueue.setThreadPool(ThreadPool aThreadPool)
Set the ThreadPool instance servicing this WorkQueue
|
Copyright © 2017–2019 Eclipse Foundation. All rights reserved.