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() (to block until completion) I get a CancelledException. Is this exception thrown immediately or after the task has stopped executing?

link|improve this question

38% accept rate
what's the use-case? it doesn't seem like cancelling is giving you much benefit here – if you don't want the job to be interrupted yet you still want to wait for it to complete, what is cancelling giving you? – Jed Wesley-Smith May 18 '11 at 23:16
The task is working on shared state, I want to ensure it has stopped its work before I start a new one which works on the same shared state. – Jon Tirsen May 20 '11 at 4:23
but, what is the value then of the cancel? is the Future being shared amongst many clients and you want to communicate to them? – Jed Wesley-Smith May 20 '11 at 22:30
feedback

1 Answer

It is thrown as soon as it is cancelled.

There is no easy way to know it has started and is finished. You can create a wrapper for you runnable to check its state.

final AtomicInteger state = new AtomicInteger();
// in the runnable
state.incrementAndGet();
try {
    // do work
} finally {
   state.decrementAdnGet();
}
link|improve this answer
"There is no easy way to know it has started and is finished" -- you will get false from cancel() method in such case. I think that combination of result from cancel() method and result from get() method should give you full information, but I may be wrong. – Peter Štibraný May 18 '11 at 7:08
If you cancel a running task, cancel(true); should return true and get() will throw a CancellationException However, cancel(true) just sets the interrupted flag on the thread of a running task and it can still be running. – Peter Lawrey May 18 '11 at 15:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.