Example usage for java.util TimerTask subclass-usage

List of usage examples for java.util TimerTask subclass-usage

Introduction

In this page you can find the example usage for java.util TimerTask subclass-usage.

Usage

From source file org.wso2.carbon.analytics.dataservice.core.indexing.AnalyticsDataIndexingStatsCollector.java

/**
 * This class handles analytics data indexing statistics operations.
 */
public class AnalyticsDataIndexingStatsCollector extends TimerTask {

    private static Log log = LogFactory.getLog(AnalyticsDataIndexingStatsCollector.class);

From source file org.gbif.portal.web.download.LongRunningQueryTask.java

/**
 * Simple timer task that checks for long running queries and kills them.
 * 
 * @author dmartin
 */
public class LongRunningQueryTask extends TimerTask {

From source file org.apache.hadoop.chukwa.inputtools.mdl.TorqueTimerTask.java

public class TorqueTimerTask extends TimerTask {
    private Process ps = null;
    private String command;

    private static Log log = LogFactory.getLog(TorqueTimerTask.class);
    // public static int timeoutInterval=300;

From source file org.openmrs.scheduler.timer.TimerSchedulerTask.java

public class TimerSchedulerTask extends TimerTask {

    /** The task that will be executed by the JDK timer. */
    private Task task;

    /** Logger */

From source file org.geoserver.wps.WPSStorageHandler.java

/**
 * Handles the temporary storage directory for WPS
 * 
 * @author Andrea Aime - GeoSolutions
 */
public class WPSStorageHandler extends TimerTask {

From source file syndeticlogic.memento.Reaper.java

/**
 * Class Reaper
 *
 * @author <a href="mailto:james@empty-set.net">James Percent</a>
 * @version $Revision: 1.0$
 */

From source file fr.aliasource.webmail.pool.impl.KeepAliveTask.java

public class KeepAliveTask<T extends IPoolable> extends TimerTask {

    private LinkedBlockingQueue<T> availableObjects;

    private IPoolableObjectFactory<T> factory;

From source file org.wso2.carbon.identity.user.store.ws.CleanupSchedulerTask.java

public class CleanupSchedulerTask extends TimerTask {

    private static Log log = LogFactory.getLog(CleanupSchedulerTask.class);

    public void run() {
        cleanTmpFolder();

From source file is.brendan.WarpMarkers.WarpMarkersTimerTask.java

/**
 * Periodic timer that outputs stuff to JSON.
 * @author Brendan Johan Lee - deadcyclo@vanntett.net
 */

public class WarpMarkersTimerTask extends TimerTask {

From source file org.apache.hadoop.hive.metastore.events.EventCleanerTask.java

public class EventCleanerTask extends TimerTask {

    public static final Log LOG = LogFactory.getLog(EventCleanerTask.class);
    private final HMSHandler handler;

    public EventCleanerTask(HMSHandler handler) {