DefaultManagedTaskScheduler@Deprecated public class TimerManagerTaskScheduler extends TimerManagerAccessor implements TaskScheduler
TaskScheduler interface, wrapping
 a CommonJ TimerManager.CONTAINER_PREFIXlogger| Constructor and Description | 
|---|
| TimerManagerTaskScheduler()Deprecated.  | 
| Modifier and Type | Method and Description | 
|---|---|
| ScheduledFuture<?> | schedule(Runnable task,
        Date startTime)Deprecated.  Schedule the given  Runnable, invoking it at the specified execution time. | 
| ScheduledFuture<?> | schedule(Runnable task,
        Trigger trigger)Deprecated.  Schedule the given  Runnable, invoking it whenever the trigger
 indicates a next execution time. | 
| ScheduledFuture<?> | scheduleAtFixedRate(Runnable task,
                   Date startTime,
                   long period)Deprecated.  Schedule the given  Runnable, invoking it at the specified execution time
 and subsequently with the given period. | 
| ScheduledFuture<?> | scheduleAtFixedRate(Runnable task,
                   long period)Deprecated.  Schedule the given  Runnable, starting as soon as possible and
 invoking it with the given period. | 
| ScheduledFuture<?> | scheduleWithFixedDelay(Runnable task,
                      Date startTime,
                      long delay)Deprecated.  Schedule the given  Runnable, invoking it at the specified execution time
 and subsequently with the given delay between the completion of one execution
 and the start of the next. | 
| ScheduledFuture<?> | scheduleWithFixedDelay(Runnable task,
                      long delay)Deprecated.  Schedule the given  Runnable, starting as soon as possible and invoking it with
 the given delay between the completion of one execution and the start of the next. | 
| void | setErrorHandler(ErrorHandler errorHandler)Deprecated.  Provide an  ErrorHandlerstrategy. | 
afterPropertiesSet, destroy, getTimerManager, isRunning, obtainTimerManager, setShared, setTimerManager, setTimerManagerName, start, stopconvertJndiName, isResourceRef, lookup, lookup, setResourceRefgetJndiEnvironment, getJndiTemplate, setJndiEnvironment, setJndiTemplateclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitschedule, scheduleAtFixedRate, scheduleAtFixedRate, scheduleWithFixedDelay, scheduleWithFixedDelaypublic void setErrorHandler(ErrorHandler errorHandler)
ErrorHandler strategy.@Nullable public ScheduledFuture<?> schedule(Runnable task, Trigger trigger)
TaskSchedulerRunnable, invoking it whenever the trigger
 indicates a next execution time.
 Execution will end once the scheduler shuts down or the returned
 ScheduledFuture gets cancelled.
schedule in interface TaskSchedulertask - the Runnable to execute whenever the trigger firestrigger - an implementation of the Trigger interface,
 e.g. a CronTrigger object
 wrapping a cron expressionScheduledFuture representing pending completion of the task,
 or null if the given Trigger object never fires (i.e. returns
 null from Trigger.nextExecutionTime(org.springframework.scheduling.TriggerContext))CronTriggerpublic ScheduledFuture<?> schedule(Runnable task, Date startTime)
TaskSchedulerRunnable, invoking it at the specified execution time.
 Execution will end once the scheduler shuts down or the returned
 ScheduledFuture gets cancelled.
schedule in interface TaskSchedulertask - the Runnable to execute whenever the trigger firesstartTime - the desired execution time for the task
 (if this is in the past, the task will be executed immediately, i.e. as soon as possible)ScheduledFuture representing pending completion of the taskpublic ScheduledFuture<?> scheduleAtFixedRate(Runnable task, Date startTime, long period)
TaskSchedulerRunnable, invoking it at the specified execution time
 and subsequently with the given period.
 Execution will end once the scheduler shuts down or the returned
 ScheduledFuture gets cancelled.
scheduleAtFixedRate in interface TaskSchedulertask - the Runnable to execute whenever the trigger firesstartTime - the desired first execution time for the task
 (if this is in the past, the task will be executed immediately, i.e. as soon as possible)period - the interval between successive executions of the task (in milliseconds)ScheduledFuture representing pending completion of the taskpublic ScheduledFuture<?> scheduleAtFixedRate(Runnable task, long period)
TaskSchedulerRunnable, starting as soon as possible and
 invoking it with the given period.
 Execution will end once the scheduler shuts down or the returned
 ScheduledFuture gets cancelled.
scheduleAtFixedRate in interface TaskSchedulertask - the Runnable to execute whenever the trigger firesperiod - the interval between successive executions of the task (in milliseconds)ScheduledFuture representing pending completion of the taskpublic ScheduledFuture<?> scheduleWithFixedDelay(Runnable task, Date startTime, long delay)
TaskSchedulerRunnable, invoking it at the specified execution time
 and subsequently with the given delay between the completion of one execution
 and the start of the next.
 Execution will end once the scheduler shuts down or the returned
 ScheduledFuture gets cancelled.
scheduleWithFixedDelay in interface TaskSchedulertask - the Runnable to execute whenever the trigger firesstartTime - the desired first execution time for the task
 (if this is in the past, the task will be executed immediately, i.e. as soon as possible)delay - the delay between the completion of one execution and the start of the next
 (in milliseconds)ScheduledFuture representing pending completion of the taskpublic ScheduledFuture<?> scheduleWithFixedDelay(Runnable task, long delay)
TaskSchedulerRunnable, starting as soon as possible and invoking it with
 the given delay between the completion of one execution and the start of the next.
 Execution will end once the scheduler shuts down or the returned
 ScheduledFuture gets cancelled.
scheduleWithFixedDelay in interface TaskSchedulertask - the Runnable to execute whenever the trigger firesdelay - the delay between the completion of one execution and the start of the next
 (in milliseconds)ScheduledFuture representing pending completion of the task