cloudiful-scheduler 0.4.12

Single-job async scheduling library for background work with optional Valkey-backed state.
Documentation
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::{
    GroupedCronSchedule, GroupedIntervalSchedule, IntervalWindow, MissedRunPolicy,
    OverlapPolicy, Schedule, SchedulerConfig, StaggeredIntervalSchedule, TerminalStatePolicy,
    TimeWindowAlignment, WindowedIntervalSchedule,
};
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, TriggerSource,
    TriggeredTaskContext,
};
pub use time_window::{JobTimeWindow, RunSkipReason, TimeWindowSegment};