timer_list

Crates.iotimer_list
lib.rstimer_list
version0.1.0
sourcesrc
created_at2024-07-17 07:52:40.365937
updated_at2024-07-17 07:52:40.365937
descriptionA list of timed events that will be triggered sequentially when the timer expires
homepagehttps://github.com/arceos-org/arceos
repositoryhttps://github.com/arceos-org/timer_list
max_upload_size
id1305953
size10,746
core (github:arceos-org:core)

documentation

https://docs.rs/timer_list

README

timer_list

Crates.io Docs.rs CI

A list of timed events that will be triggered sequentially when the timer expires.

Examples

use timer_list::{TimerEvent, TimerEventFn, TimerList};
use std::time::{Duration, Instant};

let mut timer_list = TimerList::new();

// set a timer that will be triggered after 1 second
let start_time = Instant::now();
timer_list.set(Duration::from_secs(1), TimerEventFn::new(|now| {
    println!("timer event after {:?}", now);
}));

while !timer_list.is_empty() {
    // check if there is any event that is expired
    let now = Instant::now().duration_since(start_time);
    if let Some((deadline, event)) = timer_list.expire_one(now) {
        // trigger the event, will print "timer event after 1.00s"
        event.callback(now);
        break;
    }
    std::thread::sleep(Duration::from_millis(10)); // relax the CPU
}
Commit count: 0

cargo fmt