okee-wheel-timer 0.1.0

Deterministic hashed wheel timer with keyed deduplication.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Keyed wrapper over the core hashed wheel timer.

mod core;
mod types;

pub use core::KeyedHashedWheelTimer;
pub use types::{KeyedScheduleResult, KeyedUpdateResult};

#[cfg(test)]
mod tests;