public class FixedTimeScheduler
extends java.util.Timer
onSchedulablesTriggered()
method of the given SchedulableHandlerI
at a
requested time, which time can be updated as required.Constructor and Description |
---|
FixedTimeScheduler(SchedulableHandlerI _sh) |
Modifier and Type | Method and Description |
---|---|
void |
cancel() |
void |
deactivate(java.lang.String reason)
Cancels the currently active task, if there is one.
|
org.apache.log4j.Logger |
getLogger() |
boolean |
isActive()
Tells if some task is scheduled currently.
|
void |
schedule(java.util.TimerTask task,
java.util.Date time) |
void |
schedule(java.util.TimerTask task,
java.util.Date firstTime,
long period) |
void |
schedule(java.util.TimerTask task,
long delay) |
void |
schedule(java.util.TimerTask task,
long delay,
long period) |
void |
scheduleAtFixedRate(java.util.TimerTask task,
java.util.Date firstTime,
long period) |
void |
scheduleAtFixedRate(java.util.TimerTask task,
long delay,
long period) |
void |
updateTriggeringDate(java.util.Date shouldTriggerNextAt,
java.lang.String reason)
Updates the triggering date as requested.
|
void |
updateTriggeringDate(java.util.Date shouldTriggerNextAt,
java.lang.String reason,
java.lang.String dateSourceInfo) |
public FixedTimeScheduler(SchedulableHandlerI _sh)
public org.apache.log4j.Logger getLogger()
public void updateTriggeringDate(java.util.Date shouldTriggerNextAt, java.lang.String reason)
shouldTriggerNextAt
- the new triggering date; if the same as the currently set one will do nothing;
must not be nullreason
- a string with the reason for the update, used (only) in log messages for debugging purposes;
must not be nulldateSourceInfo
- info from which source the new date is coming from, logged to help debugging and
analysis; may be nullpublic void updateTriggeringDate(java.util.Date shouldTriggerNextAt, java.lang.String reason, java.lang.String dateSourceInfo)
public void cancel()
cancel
in class java.util.Timer
public void schedule(java.util.TimerTask task, java.util.Date time)
schedule
in class java.util.Timer
public void schedule(java.util.TimerTask task, long delay)
schedule
in class java.util.Timer
public void schedule(java.util.TimerTask task, long delay, long period)
schedule
in class java.util.Timer
public void schedule(java.util.TimerTask task, java.util.Date firstTime, long period)
schedule
in class java.util.Timer
public void scheduleAtFixedRate(java.util.TimerTask task, long delay, long period)
scheduleAtFixedRate
in class java.util.Timer
public void scheduleAtFixedRate(java.util.TimerTask task, java.util.Date firstTime, long period)
scheduleAtFixedRate
in class java.util.Timer
public boolean isActive()
public void deactivate(java.lang.String reason)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.