I am working on a multithreading app in Java 5. When it executes it starts several executor services and it has to run for a very long time. I have a monitor service that keeps a check on the state of each created executor. I have read that the executor service may only have the following states:
- running,
- shutting down and
- terminated.
In case anything strange happens during the execution, I have subclassed my own FutureTask class and overriden the methods:
- setException and,
- done (anything unusual like ExecutionException and InterruptedException are caugth here)
I have a case where an Executor service throws an ExecutionException (in my own FutureTask class). The ExecutionException is caught and logged but my executor service is not logging in anything anymore. My monitor service is outputing the executor service is still alive. Maybe it has to do with the fact that my FutureTask has reached the state done?
- What is the best way to manage this?
- Is it possible to restart the executor service?
- It looks like the FutureTask state affects the Executor service, can I use the FutureTask's state to know the state of the Executor service.
Thanks for your help,