|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.jndi.JndiAccessor org.springframework.jndi.JndiLocatorSupport org.springframework.scheduling.commonj.TimerManagerAccessor org.springframework.scheduling.commonj.TimerManagerTaskScheduler
public class TimerManagerTaskScheduler
Implementation of Spring's TaskScheduler
interface, wrapping
a CommonJ TimerManager
.
Field Summary |
---|
Fields inherited from class org.springframework.jndi.JndiLocatorSupport |
---|
CONTAINER_PREFIX |
Fields inherited from class org.springframework.jndi.JndiAccessor |
---|
logger |
Constructor Summary | |
---|---|
TimerManagerTaskScheduler()
|
Method Summary | |
---|---|
ScheduledFuture |
schedule(Runnable task,
Date startTime)
Schedule the given Runnable , invoking it at the specified execution time. |
ScheduledFuture |
schedule(Runnable task,
Trigger trigger)
Schedule the given Runnable , invoking it whenever the trigger
indicates a next execution time. |
ScheduledFuture |
scheduleAtFixedRate(Runnable task,
Date startTime,
long period)
Schedule the given Runnable , invoking it at the specified execution time
and subsequently with the given period. |
ScheduledFuture |
scheduleAtFixedRate(Runnable task,
long period)
Schedule the given Runnable , starting as soon as possible and
invoking it with the given period. |
ScheduledFuture |
scheduleWithFixedDelay(Runnable task,
Date startTime,
long delay)
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)
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)
Provide an ErrorHandler strategy. |
Methods inherited from class org.springframework.scheduling.commonj.TimerManagerAccessor |
---|
afterPropertiesSet, destroy, getTimerManager, isRunning, setShared, setTimerManager, setTimerManagerName, start, stop |
Methods inherited from class org.springframework.jndi.JndiLocatorSupport |
---|
convertJndiName, isResourceRef, lookup, lookup, setResourceRef |
Methods inherited from class org.springframework.jndi.JndiAccessor |
---|
getJndiEnvironment, getJndiTemplate, setJndiEnvironment, setJndiTemplate |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TimerManagerTaskScheduler()
Method Detail |
---|
public void setErrorHandler(ErrorHandler errorHandler)
ErrorHandler
strategy.
public ScheduledFuture schedule(Runnable task, Trigger trigger)
TaskScheduler
Runnable
, 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 TaskScheduler
task
- the Runnable to execute whenever the trigger firestrigger
- an implementation of the Trigger
interface,
e.g. a CronTrigger
object
wrapping a cron expression
ScheduledFuture
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)
)CronTrigger
public ScheduledFuture schedule(Runnable task, Date startTime)
TaskScheduler
Runnable
, invoking it at the specified execution time.
Execution will end once the scheduler shuts down or the returned
ScheduledFuture
gets cancelled.
schedule
in interface TaskScheduler
task
- 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)
TaskScheduler
Runnable
, 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 TaskScheduler
task
- 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)
TaskScheduler
Runnable
, 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 TaskScheduler
task
- 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)
TaskScheduler
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.
Execution will end once the scheduler shuts down or the returned
ScheduledFuture
gets cancelled.
scheduleWithFixedDelay
in interface TaskScheduler
task
- 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)
TaskScheduler
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.
Execution will end once the scheduler shuts down or the returned
ScheduledFuture
gets cancelled.
scheduleWithFixedDelay
in interface TaskScheduler
task
- the Runnable to execute whenever the trigger firesdelay
- the interval between successive executions of the task (in milliseconds)
ScheduledFuture
representing pending completion of the task
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |