Executor Framework in Java
Published by Kaustubh Saha on December 28th, 2018
Executor is a framework provided by the JDK (starting 1.5) which simplifies the execution of tasks in asynchronous mode. At a high level, the Executor classes provide abstraction for assigning tasks to a pool of threads.
The java.util.concurrent packag...