Tagged Questions
4
votes
3answers
842 views
How to catch exceptions in FutureTask
After finding that FutureTask running in a Executors.newCachedThreadPool() on Java 1.6 (and from Eclipse) swallows exceptions in the Runnable.run() method, I've tried to come up with a way to catch ...
3
votes
1answer
283 views
a funny thing happens… ExecutorCompletionService
I have an application written in java that needs to find all the reachable hosts on the network.
I use InetAddress.isReachable() to do this with a timeout of 2000 milliseconds.
I look up the current ...
1
vote
1answer
85 views
ExecutionException thrown but without a cause
I have a futures task that is doing some I/O operations over the socket to a server. When I use the get() method of the task to retrieve the result, I am getting ExecutionException, but with no cause ...
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.
1
vote
4answers
2k views
Java 5: java.util.concurrent.FutureTask - Semantics of cancel() and done()
I am currently hunting a nasty bug in a multi-threaded environment using FutureTasks and Executors. The basic idea is this to have a fixed number of threads execute individual FutureTasks that compute ...