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

com.alibaba.schedulerx.worker.timer.AbstractTimerTask Maven / Gradle / Ivy

There is a newer version: 1.12.0
Show newest version
package com.alibaba.schedulerx.worker.timer;

import java.util.TimerTask;

import com.alibaba.schedulerx.worker.log.LogFactory;
import com.alibaba.schedulerx.worker.log.Logger;

/**
 *
 * @author xiaomeng.hxm
 */
public abstract class AbstractTimerTask extends TimerTask {
    protected static final Logger LOGGER = LogFactory.getLogger("timer");

    public abstract String getName();
    // 单位s
    public abstract long getInitialDelay();
    // 单位s
    public abstract long getPeriod();

    public void init() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy