gpt4 book ai didi

java - 如何从 ScheduledExecutorService 中删除任务?

转载 作者:行者123 更新时间:2023-12-02 02:50:18 25 4
gpt4 key购买 nike

我有一个 ScheduledExecutorService,它定期使用 scheduleAtFixedRate(Runnable, INIT_DELAY, ACTION_DELAY, TimeUnit.SECONDS); 来计时几个不同的任务;

我还有一个与此调度程序一起使用的不同的Runnable。当我想从调度程序中删除其中一项任务时,问题就开始了。

有办法做到这一点吗?

我使用一个调度程序处理不同的任务是否正确?实现这一点的最佳方法是什么?

最佳答案

只需取消 scheduledAtFixedRate() 返回的 future:

// Create the scheduler
ScheduledExecutorService scheduledExecutorService = Executors.newScheduledThreadPool(1);
// Create the task to execute
Runnable r = new Runnable() {
@Override
public void run() {
System.out.println("Hello");
}
};
// Schedule the task such that it will be executed every second
ScheduledFuture<?> scheduledFuture =
scheduledExecutorService.scheduleAtFixedRate(r, 1L, 1L, TimeUnit.SECONDS);
// Wait 5 seconds
Thread.sleep(5000L);
// Cancel the task
scheduledFuture.cancel(false);

另一件事需要注意的是取消不会从调度程序中删除任务。它所确保的是 isDone 方法始终返回 true。如果继续添加此类任务,可能会导致内存泄漏。例如:如果您基于某些客户端 Activity 或 UI 按钮单击启动任务,请重复 n 次并退出。如果该按钮被单击太多次,您可能会得到大量无法被垃圾收集的线程,因为调度程序仍然有引用。

您可能需要在 Java 7 及以上版本中提供的 ScheduledThreadPoolExecutor 类中使用 setRemoveOnCancelPolicy(true)。为了向后兼容,默认设置为 false。

关于java - 如何从 ScheduledExecutorService 中删除任务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57111264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com