SpecSchedule specifies a duty cycle (to the second granularity), based on a traditional crontab specification. It is computed initially and stored as bit sets.
| 5 | // SpecSchedule specifies a duty cycle (to the second granularity), based on a |
| 6 | // traditional crontab specification. It is computed initially and stored as bit sets. |
| 7 | type SpecSchedule struct { |
| 8 | Second, Minute, Hour, Dom, Month, Dow uint64 |
| 9 | |
| 10 | // Override location for this schedule. |
| 11 | Location *time.Location |
| 12 | } |
| 13 | |
| 14 | // bounds provides a range of acceptable values (plus a map of name to value). |
| 15 | type bounds struct { |
nothing calls this directly
no outgoing calls
no test coverage detected