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

cn.t.util.common.TaskUtil Maven / Gradle / Ivy

There is a newer version: 1.0.16.RELEASE
Show newest version
package cn.t.util.common;

import cn.t.util.common.schedule.FixedTimerTask;

import java.util.Timer;

public class TaskUtil {

    public static Timer createFixedTimerTask(int period, int delay, Runnable runnable) {
        Timer timer = new Timer();
        timer.schedule(new FixedTimerTask(runnable), delay, period);
        return timer;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy