Uses of Interface
org.springframework.scheduling.SchedulingTaskExecutor

Packages that use SchedulingTaskExecutor
org.springframework.jca.work Convenience classes for scheduling based on the JCA 1.5 WorkManager facility, as supported within JCA 1.5 ResourceAdapters. 
org.springframework.jca.work.glassfish Convenience package for obtaining a GlassFish JCA WorkManager for use in web applications. 
org.springframework.jca.work.jboss Convenience package for obtaining a JBoss JCA WorkManager for use in web applications. 
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. 
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 Timer, allowing to set up Timers and ScheduledTimerTasks as beans in a Spring context. 
 

Uses of SchedulingTaskExecutor in org.springframework.jca.work
 

Classes in org.springframework.jca.work that implement SchedulingTaskExecutor
 class WorkManagerTaskExecutor
          TaskExecutor implementation that delegates to a JCA 1.5 WorkManager, implementing the WorkManager interface.
 

Uses of SchedulingTaskExecutor in org.springframework.jca.work.glassfish
 

Classes in org.springframework.jca.work.glassfish that implement SchedulingTaskExecutor
 class GlassFishWorkManagerTaskExecutor
          Spring TaskExecutor adapter for the GlassFish JCA WorkManager.
 

Uses of SchedulingTaskExecutor in org.springframework.jca.work.jboss
 

Classes in org.springframework.jca.work.jboss that implement SchedulingTaskExecutor
 class JBossWorkManagerTaskExecutor
          Spring TaskExecutor adapter for the JBoss JCA WorkManager.
 

Uses of SchedulingTaskExecutor in org.springframework.scheduling.backportconcurrent
 

Classes in org.springframework.scheduling.backportconcurrent that implement SchedulingTaskExecutor
 class ConcurrentTaskExecutor
          Adapter that takes a JSR-166 backport edu.emory.mathcs.backport.java.util.concurrent.Executor and exposes a Spring TaskExecutor for it.
 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.
 

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.
 



Copyright © 2002-2008 The Spring Framework.