The Spring Framework

Uses of Interface
org.springframework.scheduling.SchedulingTaskExecutor

Packages that use SchedulingTaskExecutor
org.springframework.scheduling.commonj Convenience classes for scheduling based on the CommonJ WorkManager/TimerManager facility, as supported by IBM WebSphere 6.0+ and BEA WebLogic 9.0+. 
org.springframework.scheduling.concurrent Scheduling convenience classes for the JDK 1.5+ Executor mechanism in the java.util.concurrent package, allowing to set up a ThreadPoolExecutor or ScheduledThreadPoolExecutor as bean in a Spring context. 
org.springframework.scheduling.quartz Support classes for the open source scheduler Quartz, allowing to set up Quartz Schedulers, JobDetails and Triggers as beans in a Spring context. 
org.springframework.scheduling.timer Scheduling convenience classes for the JDK 1.3+ Timer, allowing to set up Timers and ScheduledTimerTasks as beans in a Spring context. 
 

Uses of SchedulingTaskExecutor in org.springframework.scheduling.commonj
 

Classes in org.springframework.scheduling.commonj that implement SchedulingTaskExecutor
 class WorkManagerTaskExecutor
          TaskExecutor implementation that delegates to a CommonJ WorkManager, which either needs to be specified as reference or through the JNDI name.
 

Uses of SchedulingTaskExecutor in org.springframework.scheduling.concurrent
 

Classes in org.springframework.scheduling.concurrent that implement SchedulingTaskExecutor
 class ConcurrentTaskExecutor
          Adapter that takes a JDK 1.5 java.util.concurrent.Executor and exposes a Spring TaskExecutor for it.
 class ThreadPoolTaskExecutor
          JavaBean that allows for configuring a JDK 1.5 ThreadPoolExecutor in bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties), exposing it as a Spring TaskExecutor.
 

Uses of SchedulingTaskExecutor in org.springframework.scheduling.quartz
 

Classes in org.springframework.scheduling.quartz that implement SchedulingTaskExecutor
 class SimpleThreadPoolTaskExecutor
          Subclass of Quartz's SimpleThreadPool that implements Spring's TaskExecutor interface and listens to Spring lifecycle callbacks.
 

Uses of SchedulingTaskExecutor in org.springframework.scheduling.timer
 

Classes in org.springframework.scheduling.timer that implement SchedulingTaskExecutor
 class TimerTaskExecutor
          TaskExecutor implementation that uses a single Timer for executing all tasks, effectively resulting in serialized asynchronous execution on a single thread.
 


The Spring Framework

Copyright © 2002-2006 The Spring Framework.