我写了以下代码:
import java.util.Calendar;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
class Voter {
public static void main(String[] args) {
ScheduledThreadPoolExecutor stpe = new ScheduledThreadPoolExecutor(2);
stpe.scheduleAtFixedRate(new Shoot(), 0, 1, TimeUnit.SECONDS);
}
}
class Shoot implements Runnable {
Calendar deadline;
long endTime,currentTime;
public Shoot() {
deadline = Calendar.getInstance();
deadline.set(2011,6,21,12,18,00);
endTime = deadline.getTime().getTime();
}
public void work() {
currentTime = System.currentTimeMillis();
if (currentTime >= endTime) {
System.out.println("Got it!");
func();
}
}
public void run() {
work();
}
public void func() {
// function called when time matches
}
}
我想在调用func()时停止ScheduledThreadPoolExecutor。它没有必要进一步工作!我想我应该把函数func()放在Voter类中,而不是创建某种回调。但也许我可以在Shoot课程中做到这一点。
我该如何妥善解决?
答案 0 :(得分:20)
ScheduledThreadPoolExecutor
允许您立即执行任务或安排稍后执行(您也可以设置定期执行)。
因此,如果您将使用此类来停止执行任务,请记住:
ScheduledThreadPoolExecutor.shutdown()
将设置为取消您的任务,并且它不会尝试中断您的线程。使用此方法,您实际上可以避免执行较新的任务,以及执行已计划但未启动的任务。ScheduledThreadPoolExecutor.shutdownNow()
将中断线程,但正如我在此列表的第一点所说的那样...... 当您想要停止调度程序时,您必须执行以下操作:
//Cancel scheduled but not started task, and avoid new ones
myScheduler.shutdown();
//Wait for the running tasks
myScheduler.awaitTermination(30, TimeUnit.SECONDS);
//Interrupt the threads and shutdown the scheduler
myScheduler.shutdownNow();
但是如果你只需要停止一项任务呢?
方法ScheduledThreadPoolExecutor.schedule(...)
返回ScheduleFuture
,表示您已安排的任务。因此,您可以调用ScheduleFuture.cancel(boolean mayInterruptIfRunning)
方法取消您的任务,并在需要时尝试中断它。