December 2015
Intermediate to advanced
292 pages
6h 16m
English
Thread pools are useful when the number of threads that are created need to be limited. Using a pool not only controls how many threads are created, but it can also eliminate the need to create and destroy threads repeatedly, an often expensive operation.
The following figure depicts a thread pool. Requests are assigned to threads in the pool. Some thread pools will create new threads if there are no unused threads available. Others will restrict the number of threads available. This may result in some requests being blocked.

We will demonstrate thread pools using the ThreadPoolExecutor class. This class also provides methods that deliver ...
Read now
Unlock full access