Class PeriodicWork
- All Implemented Interfaces:
ExtensionPoint
,Runnable
- Direct Known Subclasses:
AsyncPeriodicWork
,HudsonHomeDiskUsageChecker
,LoadStatistics.LoadStatisticsUpdater
,MemoryUsageMonitor
,NodeProvisioner.NodeProvisionerInvoker
,Trigger.Cron
Timer
.)
This extension point is useful if your plugin needs to perform some work in the background periodically (for example, monitoring, batch processing, garbage collection, etc.)
Put Extension
on your class to have it picked up and registered automatically, or
manually insert this to Trigger.timer
.
This class is designed to run a short task. Implementations whose periodic work takes a long time
to run should extend from AsyncPeriodicWork
instead.
- Author:
- Kohsuke Kawaguchi
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class hudson.triggers.SafeTimerTask
SafeTimerTask.ExceptionRunnable
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ExtensionList<PeriodicWork>
all()
Returns all the registeredPeriodicWork
s.long
Gets the number of milliseconds til the first execution.abstract long
Gets the number of milliseconds between successive executions.static void
init()
Methods inherited from class hudson.triggers.SafeTimerTask
doRun, getLogsRoot, of, run
Methods inherited from class java.util.TimerTask
cancel, scheduledExecutionTime
-
Field Details
-
logger
Deprecated.Use your own logger, or send messages to the logger inAsyncPeriodicWork.execute(hudson.model.TaskListener)
. -
MIN
protected static final long MIN- See Also:
-
HOUR
protected static final long HOUR- See Also:
-
DAY
protected static final long DAY- See Also:
-
-
Constructor Details
-
PeriodicWork
public PeriodicWork()
-
-
Method Details
-
getRecurrencePeriod
public abstract long getRecurrencePeriod()Gets the number of milliseconds between successive executions.Hudson calls this method once to set up a recurring timer, instead of calling this each time after the previous execution completed. So this class cannot be used to implement a non-regular recurring timer.
IOW, the method should always return the same value.
-
getInitialDelay
public long getInitialDelay()Gets the number of milliseconds til the first execution.By default it chooses the value randomly between 0 and
getRecurrencePeriod()
-
all
Returns all the registeredPeriodicWork
s. -
init
-
AsyncPeriodicWork.execute(hudson.model.TaskListener)
.