Executor Framework

This lesson discusses thread management using executors.

We'll cover the following...

Creating and running individual threads for small applications is acceptable however if you are writing an enterprise-grade application with several dozen threads then you'll likely need to offload thread management in your application to library classes which free a developer from worrying about thread house-keeping.

Task

A task is a logical unit of work. Usually, a task should be independent of other tasks so ...