Crate tokio_cron
Source - Job
- Scheduler
- daily
- Convenience method for creating a job that runs every day on the hour_spec provided.
second,minute = 0; hour = input; day,week,month,year = *
- hourly
- Convenience method for creating a job that runs every hour on the minute_spec provided.
second = 0; minute = input; hour,day,week,month,year = *
- monthly
- Convenience method for creating a job that runs on the given days of week, at the given hour.
second,minute = 0; hour,day = input; month,week,year = *
- weekly
- Convenience method for creating a job that runs on the given days of week, at the given hour.
second,minute = 0; hour,week = input; day,month,year = *