easy-schedule 0.11.3

A flexible task scheduler built on Tokio with multiple scheduling options and skip conditions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod schdule;
mod task;

pub mod prelude {
    pub use crate::schdule::Scheduler;
    pub use crate::task::{Notifiable, Skip, Task};
    pub use async_trait::async_trait;
    pub use tokio_util::sync::CancellationToken;
}

pub use crate::{
    prelude::{Notifiable, Scheduler},
    task::{Skip, Task},
};