| |
|
| java.lang.Object org.springframework.scheduling.concurrent.ScheduledExecutorFactoryBean
Field Summary | |
final protected Log | logger |
logger | final protected Log logger(Code) | | |
afterPropertiesSet | public void afterPropertiesSet()(Code) | | |
isSingleton | public boolean isSingleton()(Code) | | |
setExposeUnconfigurableExecutor | public void setExposeUnconfigurableExecutor(boolean exposeUnconfigurableExecutor)(Code) | | Specify whether this FactoryBean should expose an unconfigurable
decorator for the created executor.
Default is "false", exposing the raw executor as bean reference.
Switch this flag to "true" to strictly prevent clients from
modifying the executor's configuration.
See Also: java.util.concurrent.Executors.unconfigurableScheduledExecutorService |
setPoolSize | public void setPoolSize(int poolSize)(Code) | | Set the ScheduledExecutorService's pool size.
Default is 1.
|
setRejectedExecutionHandler | public void setRejectedExecutionHandler(RejectedExecutionHandler rejectedExecutionHandler)(Code) | | Set the RejectedExecutionHandler to use for the ThreadPoolExecutor.
Default is the ThreadPoolExecutor's default abort policy.
See Also: java.util.concurrent.ThreadPoolExecutor.AbortPolicy |
|
|
|