gpt4 book ai didi

java - 仅当队列中有内容时才消耗 cpu 的工作线程

转载 作者:行者123 更新时间:2023-12-01 16:56:08 25 4
gpt4 key购买 nike

这就是我正在尝试做的事情。

我想要一个具有队列并启动线程的对象。另一个线程可以通过执行 object.addWork(work); 推送到该队列;

这会将工作插入队列并唤醒正在 sleep 的线程。然后,线程对队列中的每个对象执行工作,直到队列为空。

一旦队列为空并且没有更多工作剩余,该线程就会 hibernate ,需要通过再次添加到队列来唤醒。

有没有线程安全的方法来制作这样的对象?

最佳答案

您基本上想要 Executors.newSingleThreadExecutor 可以做的事情

class YouNameIt{
private ExecutorService executor;

public void start(){
executor = Executors.newSingleThreadExecutor();
}

public void put(Object o){
executor.submit(new Runnable() {
@Override
public void run() {
process(o);
}
});
}

private void process(Object o) {
//Put your processing here
}

public void stop(){
executor.shutdown();
}
}

关于java - 仅当队列中有内容时才消耗 cpu 的工作线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32611125/

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