#task #run #scheduler #schedule #future #task-scheduling #fn-once

task_scheduler

A library to easilty schedule an FnOnce to run in the future

2 unstable releases

0.2.0 Mar 12, 2019
0.1.0 Oct 24, 2017

#1273 in Rust patterns

28 downloads per month

MIT/Apache

5KB
103 lines

Build Status

Task Scheduler

A library to easily schedule an FnOnce to run sometime in the future. It is guaranteed that the task will not run before the given time, but due to delays may run slightly after.

The timer uses a single thread to schedule and run all tasks. A long-running task will delay other tasks from running.

Example

extern crate task_scheduler;

use task_scheduler::Scheduler;

let scheduler = Scheduler::new();

//pick some time in the future
let time = Instant::now() + Duration::from_secs(5);
scheduler.after_instant(time, ||{
    println!("do something here")
});

scheduler.after_duration(Duration::from_millis(100), ||{
    println!("do something else")
});

No runtime deps