Package hudson.model
Class FingerprintCleanupThread
java.lang.Object
java.util.TimerTask
hudson.triggers.SafeTimerTask
hudson.model.PeriodicWork
hudson.model.AsyncPeriodicWork
hudson.model.FingerprintCleanupThread
- All Implemented Interfaces:
ExtensionPoint,Runnable
@Extension
@Symbol("fingerprintCleanup")
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class)
public class FingerprintCleanupThread
extends AsyncPeriodicWork
Scans the fingerprint database and remove old records
that are no longer relevant.
A Fingerprint is removed when none of the builds that
it point to is available in the records.
- Author:
- Kohsuke Kawaguchi
-
Nested Class Summary
Nested classes/interfaces inherited from class hudson.triggers.SafeTimerTask
SafeTimerTask.ExceptionRunnableNested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson -
Field Summary
Fields inherited from class hudson.model.AsyncPeriodicWork
nameFields inherited from class hudson.model.PeriodicWork
DAY, HOUR, logger, MIN -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(TaskListener listener) Initiates the cleanup of fingerprints IF enabled.longGets the number of milliseconds between successive executions.static voidinvoke()Methods inherited from class hudson.model.AsyncPeriodicWork
createListener, doRun, getErrorLoggingLevel, getLogFile, getNormalLoggingLevel, getSlowLoggingLevel, queueIfAlreadyRunningMethods inherited from class hudson.model.PeriodicWork
all, getInitialDelay, initMethods inherited from class hudson.triggers.SafeTimerTask
getLogsRoot, of, runMethods inherited from class java.util.TimerTask
cancel, scheduledExecutionTime
-
Constructor Details
-
FingerprintCleanupThread
public FingerprintCleanupThread()
-
-
Method Details
-
getRecurrencePeriod
public long getRecurrencePeriod()Description copied from class:PeriodicWorkGets 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.
- Specified by:
getRecurrencePeriodin classPeriodicWork
-
invoke
public static void invoke() -
execute
Initiates the cleanup of fingerprints IF enabled. In case of configured external storage, the file system based storage cleanup is also performed.- Specified by:
executein classAsyncPeriodicWork- Parameters:
listener- Output sent will be reported to the users. (this work is TBD.)
-