2 unstable releases

0.1.0 Nov 11, 2022
0.0.0 Sep 28, 2022

#1183 in Data structures

Download history 836/week @ 2023-12-12 723/week @ 2023-12-19 189/week @ 2023-12-26 942/week @ 2024-01-02 1102/week @ 2024-01-09 1226/week @ 2024-01-16 1035/week @ 2024-01-23 842/week @ 2024-01-30 812/week @ 2024-02-06 1157/week @ 2024-02-13 915/week @ 2024-02-20 441/week @ 2024-02-27 154/week @ 2024-03-05 161/week @ 2024-03-12 127/week @ 2024-03-19 151/week @ 2024-03-26

619 downloads per month

MIT OR Apache-2.0 OR Zlib

27KB
445 lines

timer-queue

License: Apache 2.0 License: MIT License: Zlib

A pure, minimal, and scalable structure for tracking expiration of timers

let mut q = TimerQueue::new();
q.insert(42, "second");
q.insert(17, "first");
assert!(q.next_timeout().unwrap() <= 17);
assert_eq!(q.poll(16), None);
assert_eq!(q.poll(17), Some("first"));
assert_eq!(q.poll(100), Some("second"));

License

Licensed under any of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be triple licensed as above, without any additional terms or conditions.

Dependencies

~44KB