import timely.*;
import java.time.*;
import java.util.*;
public class SchedulerExample {
public static void main(String[] args) {
Timer timer = new Timer();
TimerTask task = new TimerTask() {
public void run() {
}
};
timer.scheduleAtFixedRate(task, startTime, interval);
}
}