clockwork
Types
pub type Cron {
Cron(
minute: CronField,
hour: CronField,
day: CronField,
month: CronField,
weekday: CronField,
)
}
Constructors
-
Cron( minute: CronField, hour: CronField, day: CronField, month: CronField, weekday: CronField, )
Functions
pub fn from_string(cron: String) -> Result(Cron, Nil)
Parse a cron string into a Cron struct.
pub fn next_occurrence(
given cron: Cron,
from from: Timestamp,
with_offset offset: Duration,
) -> Timestamp
Returns the next occurrence of a cron job after the given timestamp.
pub fn ranging(from start: Int, to end: Int) -> CronField
Range field for a cron struct.
pub fn ranging_every(
step: Int,
from start: Int,
to end: Int,
) -> CronField
pub fn with_day(cron: Cron, day: CronField) -> Cron
Set the day field of a cron struct.
pub fn with_hour(cron: Cron, hour: CronField) -> Cron
Set the hour field of a cron struct.
pub fn with_minute(cron: Cron, minute: CronField) -> Cron
Set the minute field of a cron struct.
pub fn with_month(cron: Cron, month: CronField) -> Cron
Set the month field of a cron struct.
pub fn with_weekday(cron: Cron, weekday: CronField) -> Cron
Set the weekday field of a cron struct. Weekdays are 0-indexed, starting from Sunday.