Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question
I think it is better to leave this chaining and scheduling and sequencing to some SOA tool like apache service mix rather than implement our custom. But the end points can be invoked to be as multiple consumers. I think manually implementing this has too many variables and control issues. Just a thought. – r0ast3d Nov 8 '11 at 18:08

2 Answers

up vote 1 down vote accepted

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

share|improve this answer
Yeah Ive come to that my come conclusion myself – Paul Taylor Nov 9 '11 at 11:50

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.