java.util.concurrent.ScheduledExecutorService
and exposes a Spring {@link org.springframework.scheduling.TaskScheduler} for it.Extends {@link ConcurrentTaskExecutor} in order to implement the{@link org.springframework.scheduling.SchedulingTaskExecutor} interface as well.Note that there is a pre-built {@link ThreadPoolTaskScheduler} that allows fordefining a JDK 1.5 {@link java.util.concurrent.ScheduledThreadPoolExecutor} in bean style,exposing it as a Spring {@link org.springframework.scheduling.TaskScheduler} directly.This is a convenient alternative to a raw ScheduledThreadPoolExecutor definition with a separate definition of the present adapter class. @author Juergen Hoeller @author Mark Fisher @since 3.0 @see java.util.concurrent.ScheduledExecutorService @see java.util.concurrent.ScheduledThreadPoolExecutor @see java.util.concurrent.Executors @see ThreadPoolTaskScheduler
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|