An open API service indexing awesome lists of open source software.

https://github.com/tonitaga/simplethreadpool

The ThreadPool class provides a mechanism to execute tasks concurrently by distributing them among a fixed number of worker threads. Users can submit tasks to the thread pool, wait for their completion, stop the thread pool, and launch the workers again.
https://github.com/tonitaga/simplethreadpool

cpp17 thread-pool

Last synced: 3 months ago
JSON representation

The ThreadPool class provides a mechanism to execute tasks concurrently by distributing them among a fixed number of worker threads. Users can submit tasks to the thread pool, wait for their completion, stop the thread pool, and launch the workers again.

Awesome Lists containing this project

README

        

# SimpleThreadPool
The ThreadPool class provides a mechanism to execute tasks concurrently by distributing them among a fixed number of worker threads. Users can submit tasks to the thread pool, wait for their completion, stop the thread pool, and launch the workers again.