我是使用 Spring Task Scheduler 执行任务的新手,所以这可能是一个基本问题。我有一个我想在实现的类中处理的项目列表Runnable
。这是我的任务类:
public class ProcessTask<T> implements Runnable {
private String item;
public ProcessTask(String item) {
System.out.println("Starting process for " + item);
this.item = item;
}
@Override
public void run() {
System.out.println("Finishing task for " + item);
}
我想处理一个项目列表,每个项目在上一个任务开始后 10 秒开始。我知道我可以将每一个设置为在前一个被安排后 10 秒运行,但是我不想依赖它,因为其他进程可能会导致任务在 10 秒之前运行。
所以在我的主要课程中,我有以下内容:
Date end = new Date(cal.getTimeInMillis() + 10000); // this is the time that the task should be fired off, the first one being 10 seconds after the current time
for(String item : items) {
Calendar cal = Calendar.getInstance();
cal.setTime(end);
System.out.println("Next task fires at " + cal.getTime());
ProcessTask task = new ProcessTask(item);
ScheduledFuture<?> future = taskScheduler.schedule(task, end);
end = new Date(Calendar.getInstance().getTimeInMillis() + 10000);
}
第一个任务在代码运行 10 秒后触发,这很棒。但是其余的项目会立即安排,而不是等待 10 秒。我确实理解为什么会发生这种情况 - 因为taskScheduler.schedule
是异步的,所以 for 循环只会继续,其余的项目会在 10 秒后安排。
我尝试让主线程休眠一秒钟,并ScheduledFuture
在安排下一个任务之前检查是否已完成,例如:
while(!future.isDone()) {
Thread.sleep(1000);
System.out.println("is future done: " + future.isDone());
}
如果我ScheduledFuture<?> future = taskScheduler.schedule(task, end);
在上面的块之后立即添加这个块,那么 future.isDone()
总是返回 false,并且该ProcessTask
run()
方法永远不会被调用。
有什么方法可以使用ScheduledFuture
来确定上一个任务是否已经结束,但如果还没有,继续等待?总体上有没有更好的方法来做到这一点?提前致谢。