cronox 0.0.3

A elegant and efficient asynchronous scheduler for Rust
Documentation

cronox

Setup

cargo add cronox

Usage

let mut scheduler = Scheduler::new();

scheduler.call(async || {}).every_second();
scheduler.call(async || {}).every_five_seconds();
scheduler.call(async || {}).every_minute();

scheduler.await;