schedule property

String? schedule
getter/setter pair

Crontab format schedule for scheduled evaluation, currently only supports the following fixed schedules: * 0 * / 1 * * * # Hourly * 0 * / 6 * * * # Every 6 hours * 0 * / 12 * * * # Every 12 hours * 0 0 * / 1 * * # Daily * 0 0 * / 7 * * # Weekly * 0 0 * / 14 * * # Every 14 days * 0 0 1 * / 1 * # Monthly

Implementation

core.String? schedule;