Schedule describes a job's duty cycle.
| 38 | |
| 39 | // Schedule describes a job's duty cycle. |
| 40 | type Schedule interface { |
| 41 | // Next returns the next activation time, later than the given time. |
| 42 | // Next is invoked initially, and then each time the job is run. |
| 43 | Next(time.Time) time.Time |
| 44 | } |
| 45 | |
| 46 | // EntryID identifies an entry within a Cron instance |
| 47 | type EntryID int |
no outgoing calls
no test coverage detected