Top Categories

Thread Pools in Java
  • Category:
  • Sub Category:
  • Java Thread Pool
  • concurrency
  • java concurrency
  • multithreading
  • thread pool
  • java multithreading
  • Java
No Views

A Thread Pool is an alternative to creating a new thread per task to execute. Instead, a number of pre-created threads exist in a pool - into which you can submit tasks to be executed by these pooled threads. 

Comments

You Might Be Interested In