okee-wheel-timer 0.1.0

Deterministic hashed wheel timer with keyed deduplication.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Core hashed wheel timer implementation.

mod core;
mod types;

pub use core::HashedWheelTimer;
pub use types::{ScheduleResult, TimeWheelError, UpdateResult};

#[cfg(test)]
mod tests;