I\'m new to java executor stuff.
I\'m using Java\'s ExecutorService to launch several threads to process data.
Executor executor = Executors.newFixedThre
Use shutdown method to gracefully shutdown from interface ExecuterService, as Quoi suggested it still runs even if threads are done. You can use submit anytime after that for new work. Other utility methods are here