Executors in Action – Part 1 – The Life cycle
From the Javadoc … interface provides a way of decoupling task submission from the mechanics of how each task will be run, including details of thread use, scheduling, etc. An Executor is normally used instead of explicitly creating threads. Indeed, Executors provide a more robust and easy mechanism for decoupling of submitting a task, from [...]
