3
votes
4answers
920 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 …
0
votes
4answers
305 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
3answers
118 views
How do I get FutureTask to return after TimeoutException?
In the code below, I'm catching a TimeoutException after 100 seconds as intended. At this point I would expect the code to exit from main and the program to terminate but it keeps printing to the …
1
vote
1answer
247 views
Seeking Clarity on Java ScheduledExecutorService and FutureTask
I'm just starting to look into Futures and the ScheduledExecutorService in Java, and I'm wondering why my Callable isn't running on the schedule I've indicated. In this sample code, the callable runs …
2
votes
1answer
180 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() …
