Tagged Questions

3
votes
4answers
2k views

invokeAll() is not willing to acept a Collection<Callable<T>>

I fail to understand why this code won't compile ExecutorService executor = new ScheduledThreadPoolExecutor(threads); class DocFeeder implements Callable<Boolean> {....} ... ...
2
votes
2answers
176 views

Java multithreading / synchronization issue

I am working on a large scale dataset and after building a model, I use multithreading (whole project in Java) as follows: OutputStream out = new BufferedOutputStream(new FileOutputStream(outFile)); ...
1
vote
2answers
99 views

How do I efficiently process multiple results from an Executor Service

I'n new to ExecutorService, but am unsure about my approach to this. I could be dealing with up to 100 threads for a known task. I'm using the general format below, where I create a List of ...
1
vote
4answers
1k views

What's the difference between Future and FutureTask in Java?

Since use ExecutorService can submit a Callable task and return a Future, why need to use FutureTask to wrap Callable task and use the method execute? I feel they both do the same thing.