作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 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/
我是一名优秀的程序员,十分优秀!