gpt4 book ai didi

java - 发生某种情况后停止线程 ScheduledThreadPoolExecutor

转载 作者:行者123 更新时间:2023-12-02 01:07:40 26 4
gpt4 key购买 nike

我想要一些线程池,它每隔固定的时间运行一些任务(这个线程池一直在获取任务)。每个任务都会调用一些 API 来获取一些值,该值可以为 null。我希望仅当返回值为空时任务才再次运行(在固定时间后)。否则,我不希望再次运行此任务。有什么办法可以实现这一点吗?我唯一想到的是使用 ScheduledThreadPoolExecutor 并从内部终止特定线程,但我没有找到一种方法来做到这一点,而且我不确定这是一个好的做法。

谢谢!

最佳答案

您可以按一个任务安排任务,并在安排下一个任务之前检查您的状况:

public class Solver {

final long delay = 500L;

String getSomeValue() {
if (Math.random() < 0.8) return "not-null";
return null;
}

void init() {
ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(8);
Runnable runnable = new Runnable() {
@Override
public void run() {
long time = System.currentTimeMillis();
String value = getSomeValue();
System.out.println("" + value + " " + System.currentTimeMillis());
if (value == null) {
executor.schedule(this, delay - (System.currentTimeMillis() - time), TimeUnit.MILLISECONDS);
}
}
};
executor.schedule(runnable, delay, TimeUnit.MILLISECONDS);
}

public static void main(String[] args) {
new Solver().init();
}

}

关于java - 发生某种情况后停止线程 ScheduledThreadPoolExecutor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59810761/

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