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 queued up.

Now, my problem is that I rely on the tasks atleast being started for my signaling to work, but it looks like the Executor just skips a task if it's been marked as canceled before it got a chance to run it.

So, is there a way to garantee that a task is always started, and always cancelled (by InterruptedException) while running.

Also, can you check if a task has not started but failed?

link|improve this question

80% accept rate
I suspect the answer is a simple "no" – skaffman Dec 14 '10 at 12:46
feedback

1 Answer

up vote 2 down vote accepted

You can probably subclass FutureTask class and override its done() method to perform the signalling. According to the documentation, this method should be called even if the task has been cancelled.

link|improve this answer
That solution worked great! I added a variable hasStarted to track if Callable.run() was called, and added some signaling in the FutureTask.done() that's triggered if hasStarted was false. – hishadow Dec 14 '10 at 13:14
feedback

Your Answer

 
or
required, but never shown

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