Registry / utility / task-thread-pool

task-thread-pool

JSON →
library1.0.10vcpkgunverified

Fast and lightweight thread pool for C++11 and newer.

vcpkg install task-thread-pool
INSTALL
IMPORT
SIG · TASK-THREAD-POOL
T
task-thread-pool
utilitycppv1.0.10
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

task_thread_pool/task_thread_pool.hpp
#include <task_thread_pool/task_thread_pool.hpp>

Create a thread pool with 4 threads and submit a task returning 42.

#include <task_thread_pool/task_thread_pool.hpp> #include <iostream> int main() { task_thread_pool::task_thread_pool pool(4); auto future = pool.submit([] { return 42; }); std::cout << future.get() << std::endl; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.10latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
Resources

No resource links recorded.

task-thread-pool — pip install task-thread-pool · libregistry