Java.util.concurrent
Jump to navigation
Jump to search
External
Internal
Overview
java.util.concurrent is a collection of utility classes to use for concurrent programming.
Executors
An executor is a mechanism that allows executing tasks on a thread different than the one that submits the task for execution. The use of executors is preferred to explicitly creating Thread instances. The executor decouples the task submission from the mechanics of how each task will be run, including details of thread use, scheduling, etc.