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

Objective: to make something like unpretentious map/reduce. There are many tasks they should be run in parallel, results added to the collection. If the task lasts longer than a certain time (eg 3 seconds) - cancel it. Which way is faster and more convenient? Share your experiences in building a "correct" multi-threading. thx in advance.

FJTask https://docs.google.com/viewer?url=http://gee.cs.oswego.edu/dl/papers/fj.pdf

share|improve this question

1 Answer

up vote 2 down vote accepted

Take a look at ParallelArrayWithMapping. It is used in a ForkJoinPool (similar useage with FJTask). There is a method called reduce that may help you. Using a Fork Join Pool and the java 7 FJ Framework is very fast and offers nice exploitations of all available processors.

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.