Remember To Shut Down ExecutorService
Methods that take a java.util.concurrent.Executor
might not know if it’s an ExecutorService
, so you have to call ExecutorService.shutdown()
yourself.
Methods that take a java.util.concurrent.Executor
might not know if it’s an ExecutorService
, so you have to call ExecutorService.shutdown()
yourself.