I have an ExecutorService that processes some tasks. The client threads can call shutdown() on the ExecutorService. I want to run some cleanup code after the ExecutorService has completely shutdown. Is there a mechanism to run a callback method after the ExecutorService has completed its shutdown.
NOTE:
- I cannot call
shutdownNow() - The clean-up code must run after the
shutdown()is completed. - The
ExecutorServiceis anewCachedThreadPoolExecutor();