limen-runtime 0.1.0-alpha.1

Limen runtime implementations and schedulers.
Documentation
1
2
3
4
5
6
7
8
//! Concurrent P2 runtime (`std` only).
//!
//! Drives a graph using `ScopedGraphApi`: each node gets a dedicated worker
//! thread within a `std::thread::scope`. Each worker calls its own
//! [`WorkerScheduler`](limen_core::scheduling::WorkerScheduler) to decide
//! whether to step, wait, or stop — no global lock, no `dyn` dispatch.
//!
//! > **Status: stub.** Implementation pending `RS1` runtime lifecycle work.