Known Direct Subclasses
ExecutorConfigurationSupport |
Base class for classes that are setting up a
java.util.concurrent.ExecutorService
(typically a java.util.concurrent.ThreadPoolExecutor). |
|
Known Indirect Subclasses
ScheduledExecutorFactoryBean |
FactoryBean that sets up
a JDK 1.5 java.util.concurrent.ScheduledExecutorService
(by default: a java.util.concurrent.ScheduledThreadPoolExecutor)
and exposes it for bean references. |
ThreadPoolExecutorFactoryBean |
JavaBean that allows for configuring a JDK 1.5 java.util.concurrent.ThreadPoolExecutor
in bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds",
"queueCapacity" properties) and exposing it as a bean reference of its native
java.util.concurrent.ExecutorService type. |
ThreadPoolTaskExecutor |
JavaBean that allows for configuring a JDK 1.5 java.util.concurrent.ThreadPoolExecutor
in bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity"
properties) and exposing it as a Spring TaskExecutor . |
ThreadPoolTaskScheduler |
Implementation of Spring's TaskScheduler interface, wrapping
a native java.util.concurrent.ScheduledThreadPoolExecutor. |
|
Class Overview
Implementation of the JDK 1.5 java.util.concurrent.ThreadFactory
interface, allowing for customizing the created threads (name, priority, etc).
See the base class CustomizableThreadCreator
for details on the available configuration options.
Public Constructors
public
CustomizableThreadFactory
()
Create a new CustomizableThreadFactory with default thread name prefix.
public
CustomizableThreadFactory
(String threadNamePrefix)
Create a new CustomizableThreadFactory with the given thread name prefix.
Parameters
threadNamePrefix
| the prefix to use for the names of newly created threads
|
Public Methods