cloudiful-scheduler 0.4.2

Single-job async scheduling library for background work with optional Valkey-backed state.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod cron_schedule;
mod schedule;
mod state;
mod task;
mod time_window;

pub use cron_schedule::CronSchedule;
pub(crate) use schedule::utc_time;
pub use schedule::{
    MissedRunPolicy, OverlapPolicy, Schedule, SchedulerConfig, TerminalStatePolicy,
};
pub(crate) use state::push_history;
pub use state::{JobState, RunRecord, RunStatus, SchedulerReport};
pub(crate) use task::TaskHandler;
pub use task::{Job, JobFuture, JobResult, RunContext, Task, TaskContext};
pub use time_window::{JobTimeWindow, RunSkipReason, TimeWindowSegment};