fleshing out

This commit is contained in:
gorhill 2013-08-29 20:07:47 -04:00
parent a8244603b5
commit 6d87e60fc4
1 changed files with 5 additions and 1 deletions

View File

@ -92,6 +92,10 @@ to create a `CronExpression` object once and keep a copy of it for reuse:
cronexpr := cronexpression.NewCronExpression("0 0 29 2 *")
nextTime := cronexpr.NextTime(time.Now())
`Use cronexpression.NoMatch(nextTime)` to find out whether a valid time was returned. For exemple, `cronexpression.NoMatch(cronexpression.NextTimeFromCronString("* * * * * 1980", time.Now()))` will return `true`, whereas `cronexpression.NoMatch(cronexpression.NextTimeFromCronString("* * * * * 2050", time.Now()))` will return false (as of 2013-08-29...)
`Use cronexpression.NoMatch(nextTime)` to find out whether a valid time was returned. For exemple,
cronexpression.NoMatch(cronexpression.NextTimeFromCronString("* * * * * 1980", time.Now()))
will return `true`, whereas
cronexpression.NoMatch(cronexpression.NextTimeFromCronString("* * * * * 2050", time.Now()))
will return false (as of 2013-08-29...)