CronExpr

Struct containing parsed cron expression

struct CronExpr {
ulong seconds;
ulong minutes;
uint hours;
uint doms;
ushort months;
ubyte dows;
}

Members

Functions

getNext
Nullable!DateTime getNext(DateTime current)

Get next date of execution after current

Meta