Wednesday 15 January 2014

When to use shutdown() and when shutdownNow() in ExecutorService?

If your task is non-interruptible use shutdown as shutdownNow wouldn't help.


In Progress .......