swactor/crates/runtime-dashboard/examples
zacheryasc 74b92d71ab refactor(core): lock-free tick timings, infallible channel push (#28)
Make mailbox push infallible and replace the locked tick-timing buffer with a
lock-free ring.

- channel: HybridChannel::push and Sender::send now return () — overflow always
  absorbs, never rejects — dropping the Result<(), T> surface and its callers.
- stats: tick_timings moves from Mutex<VecDeque> to a lock-free crossbeam
  ArrayQueue (drop-oldest-on-full), removing the per-tick lock.
- ripple the signature change through worker/runtime/config; drop worker_benchmarks.
- expand runtime_api tests around the new channel/stats shapes.

Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-02-10 07:35:58 +00:00
..
bench_dashboard.rs refactor(core): lock-free tick timings, infallible channel push (#28) 2026-02-10 07:35:58 +00:00
dashboard_demo.rs refactor(core): lock-free tick timings, infallible channel push (#28) 2026-02-10 07:35:58 +00:00
record_demo.rs refactor(core): lock-free tick timings, infallible channel push (#28) 2026-02-10 07:35:58 +00:00
replay_demo.rs feat: runtime dashboard and docs (#23) 2026-02-09 09:04:57 +00:00