-
Notifications
You must be signed in to change notification settings - Fork 1
Concurrency and JobSystem
renanbomtempo edited this page Jun 10, 2026
·
1 revision
⚠️ This wiki is under construction. Pages are being populated incrementally.
Nodens includes a built-in multithreaded job system powered by C++20 std::jthread and std::future. This page covers how to submit background work, poll for results, and stay thread-safe.
- Architecture Overview — Where the JobSystem fits in the threading model.
- Profiling with Tracy — Visualizing thread pool activity.
-
JobSystemin the API Reference.
Getting Started
Architecture
Guides
Reference