Switch to using a Timer to schedual tasks. Seems to have much more acurate time delays between executions.

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@574321 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2007-09-10 18:27:40 +00:00
parent 5f96839259
commit a69c3e78c5
1 changed files with 23 additions and 29 deletions

View File

@ -17,54 +17,48 @@
package org.apache.activemq.thread;
import java.util.HashMap;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.TimeUnit;
import java.util.Timer;
import java.util.TimerTask;
/**
* @version $Revision$
*/
public final class Scheduler {
public static final ScheduledThreadPoolExecutor CLOCK_DAEMON = new ScheduledThreadPoolExecutor(5, createThreadFactory());
static {
CLOCK_DAEMON.setKeepAliveTime(5, TimeUnit.SECONDS);
}
private static final HashMap<Runnable, ScheduledFuture> CLOCK_TICKETS = new HashMap<Runnable, ScheduledFuture>();
private static final class SchedulerTimerTask extends TimerTask {
private final Runnable task;
private SchedulerTimerTask(Runnable task) {
this.task = task;
}
public void run() {
task.run();
}
}
public static final Timer CLOCK_DAEMON = new Timer("ActiveMQ Scheduler", true);
private static final HashMap<Runnable, TimerTask> TIMER_TASKS = new HashMap<Runnable, TimerTask>();
private Scheduler() {
}
private static ThreadFactory createThreadFactory() {
return new ThreadFactory() {
public Thread newThread(Runnable runnable) {
Thread thread = new Thread(runnable, "ActiveMQ Scheduler");
thread.setDaemon(true);
return thread;
}
};
}
public static synchronized void executePeriodically(final Runnable task, long period) {
ScheduledFuture ticket = CLOCK_DAEMON
.scheduleAtFixedRate(task, period, period, TimeUnit.MILLISECONDS);
CLOCK_TICKETS.put(task, ticket);
TimerTask timerTask = new SchedulerTimerTask(task);
CLOCK_DAEMON.scheduleAtFixedRate(timerTask, period, period);
TIMER_TASKS.put(task, timerTask);
}
public static synchronized void cancel(Runnable task) {
ScheduledFuture ticket = CLOCK_TICKETS.remove(task);
TimerTask ticket = TIMER_TASKS.remove(task);
if (ticket != null) {
ticket.cancel(false);
if (ticket instanceof Runnable) {
CLOCK_DAEMON.remove((Runnable)ticket);
}
ticket.cancel();
}
}
public static void executeAfterDelay(final Runnable task, long redeliveryDelay) {
CLOCK_DAEMON.schedule(task, redeliveryDelay, TimeUnit.MILLISECONDS);
TimerTask timerTask = new SchedulerTimerTask(task);
CLOCK_DAEMON.schedule(timerTask, redeliveryDelay);
}
}