Registry / async / concurrencpp

concurrencpp

JSON →
library0.1.7vcpkgunverified

concurrencpp is a tasking library for C++ allowing developers to write highly concurrent applications easily and safely by using tasks, executors and coroutines.

vcpkg install concurrencpp
INSTALL
IMPORT
SIG · CONCURRENCPP
C
concurrencpp
asynccppv0.1.7
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.

concurrencpp/concurrencpp.h
#include <concurrencpp/concurrencpp.h>

Submit a task to thread executor and get result

#include <concurrencpp/concurrencpp.h> #include <iostream> int main() { concurrencpp::runtime runtime; auto result = runtime.thread_executor()->submit([] { return 42; }); std::cout << "Result: " << result.get() << "\n"; return 0; }
Debug
Known issues
gotchaRequires C++20 coroutine support
fix
Use a compiler with full C++20 coroutine support (e.g., MSVC 2019 16.8+, GCC 11+, Clang 14+)
affects: all
Upgrade
Version history
0.1.7latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
23 hits · last 30 days
node
20
Resources

No resource links recorded.

concurrencpp — pip install concurrencpp · libregistry