All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.triggers.SafeTimerTask Maven / Gradle / Ivy

package hudson.triggers;

import java.util.Timer;
import java.util.TimerTask;
import java.util.logging.Logger;
import java.util.logging.Level;

/**
 * {@link Timer} wrapper so that a fatal error in {@link TimerTask}
 * won't terminate the timer.
 *
 * @author Kohsuke Kawaguchi
 * @since 1.124
 */
public abstract class SafeTimerTask extends TimerTask {
    public final void run() {
        try {
            doRun();
        } catch(Throwable t) {
            LOGGER.log(Level.SEVERE, "Timer task "+this+" failed",t);
        }
    }

    protected abstract void doRun();

    private static final Logger LOGGER = Logger.getLogger(SafeTimerTask.class.getName());
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy