在 Java 6 中实现多生产者/消费者模式的最佳方法

发布于 2024-12-14 03:12:30 字数 307 浏览 1 评论 0原文

所以我有多个步骤阶段 1 ->阶段2->阶段3-> stage4 因此在某些情况下生产者将是消费者,并且在每个阶段都有多个生产者/消费者来使用多个 cpu。万一相关的一些数据包会错过步骤,即直接从阶段 1 进入阶段 4。

因此,我将为每个阶段创建一个类,与前一个阶段共享一个 BlockingQueue,但我也读到 ExecutorService 的工作方式就像一个生产者/消费者模式合二为一,所以我试图采用最好的抽象。

然而,在我看来,使用执行器,生产者位是在提交给执行器之前以顺序方式完成的,这不是我想要的。

有人可以澄清一下吗?

So I have multiple steps stage 1 -> stage 2 -> stage 3 -> stage4 so in some cases the producer would be a consumer, and at each stage there are multiple producers/consumers to make use of multiple cpus. In case relevent some packets would miss out steps, i.e go straight from stage 1 to stage 4.

So I was going to have a class for each stage, sharing a BlockingQueue with the previous stage, but Ive also read that the ExecutorService works like a Producer/Consumer pattern all in one, so Im trying to go with the best abstraction.

However it seems to me that using an Executor, that the producer bit is done before they are submitted to the executor, in a sequential way which is not what I want.

Could anyone clarify please ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

傲娇萝莉攻 2024-12-21 03:12:30

听起来您每个阶段都需要一个 java.util.concurrent.CompletionService,而不是 BlockingQueue

Sounds like you need a java.util.concurrent.CompletionService for each stage, instead of a BlockingQueue.

霓裳挽歌倾城醉 2024-12-21 03:12:30

看一下执行器和线程池。这是官方教程: http://download.oracle.com/javase/tutorial/基本/并发/

Take a look on Executors and thread pools. Here is the official tutorial: http://download.oracle.com/javase/tutorial/essential/concurrency/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文