Tagged Questions

9
votes
4answers
11k views

Is it a good way to use java.util.concurrent.FutureTask?

First of all, I must say that I am quite new to the API java.util.concurrent, so maybe what I am doing is completely wrong. What do I want to do? I have a Java application that basically runs 2 ...
5
votes
3answers
903 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 ...
2
votes
1answer
864 views

how do FutureTasks and CachedThreadPool work

I currently have code that does the following: private final static ExecutorService pool = Executors.newCachedThreadPool(); public void foo(){ FutureTask<MyObject> first_task = ...
2
votes
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 ...
2
votes
1answer
1k views

Can you use Future/Futuretask objects with Spring TaskExecutors?

Is it possible to use Java FutureTask with a Spring TaskExecutor to get a Future object? I'm looking for a TaskExecutor that implements the Java ExecutorService interface, in particular the submit() ...
1
vote
1answer
113 views

Require FutureTask to be started before cancelled

In my Callable code I use signaling to notify multiple ending behaviours to another thread. The Callable objects are queued up with FutureTasks in an Executor. They may also be cancelled after being ...
0
votes
2answers
209 views

Future Task Async Calls hanging while exception occurs

I wrote many Async Future Task Calls one below another in my java program. Giving one sample below FutureTask<List<ConditionFact>> x = getConditionFacts(final Member member); ...
0
votes
1answer
201 views

Wait for cancel() on FutureTask

I want to cancel a FutureTask that I get from a ThreadPoolExecutor but I want to be sure the that Callable on the thread pool has stopped it's work. If I call FutureTask#cancel(false) and then get() ...