Skip to main content

okee_wheel_timer/time_wheel/
mod.rs

1//! Core hashed wheel timer implementation.
2
3mod core;
4mod types;
5
6pub use core::HashedWheelTimer;
7pub use types::{ScheduleResult, TimeWheelError, UpdateResult};
8
9#[cfg(test)]
10mod tests;