threadpool Overview | Reference | Tutorial | Examples | Design
Design TODO5 | Thread Pool Pattern
TODO5

A thread pool manages a homogeneous pool of worker threads. In general worker threads are created once and are used to process a sequence of tasks. The re-use of threads reduces the thread creation and teardown overhead. The resource consumption is limited as the number of threads can be restricted. This leads to an improved system stability.

Thread-per-task

TODO5

light-weight, no administration/management thread, synchronized scheduler, e.g. queue


Copyright © 2005-2008 Philipp Henkel Overview | Reference | Tutorial | Examples | Design