Uses of Class
org.springframework.util.CustomizableThreadCreator

Packages that use CustomizableThreadCreator
org.springframework.core.task This package defines Spring's core TaskExecutor abstraction, and provides SyncTaskExecutor and SimpleAsyncTaskExecutor implementations. 
org.springframework.scheduling.backportconcurrent Scheduling convenience classes for the JSR-166 backport Executor mechanism, allowing to set up a ThreadPoolExecutor or ScheduledThreadPoolExecutor as bean in a Spring context. 
 

Uses of CustomizableThreadCreator in org.springframework.core.task
 

Subclasses of CustomizableThreadCreator in org.springframework.core.task
 class SimpleAsyncTaskExecutor
          TaskExecutor implementation that fires up a new Thread for each task, executing it asynchronously.
 

Uses of CustomizableThreadCreator in org.springframework.scheduling.backportconcurrent
 

Subclasses of CustomizableThreadCreator in org.springframework.scheduling.backportconcurrent
 class CustomizableThreadFactory
          Implementation of the JSR-166 backport ThreadFactory interface, allowing for customizing the created threads (name, priority, etc).
 class ThreadPoolTaskExecutor
          JavaBean that allows for configuring a JSR-166 backport ThreadPoolExecutor in bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties), exposing it as a Spring TaskExecutor.
 



Copyright © 2002-2008 The Spring Framework.