So you will have something like
public class Application {
private final ScheduledExecutorService executor;
private final Runnable task;
public Application(ScheduledExecutorService executor, Runnable task) {
this.executor = executor;
this.task = task;
}
public void init() {
executor.scheduleAtFixedRate(task, 0, 60, TimeUnit.SECONDS);
}
public void shutdown() {
executor.shutdownNow();
}
}
and you will create your application with something like
// ....
Application app = new Application(Executors.newSingleThreadScheduledExecutor(), task);
app.init();
// ....
// at end
app.shutdown();
Executors.newScheduledThreadPool, probably. – Louis Wasserman Jan 24 at 20:42Runnableevery 1 minute for example ? – Soheil Jan 24 at 20:46ScheduledExecutorServicehas a method that lets you do exactly that. – Louis Wasserman Jan 24 at 20:47