pub trait Clock: Send + Sync { // Required method fn now_ms(&self) -> u64; }
A monotonic clock source for the scheduler.
Get the current time in milliseconds since epoch.