Không có mô tả

Rob Figueiredo 0f01e6b177 parser: fix combining of Dow and Dom 6 năm trước cách đây
.gitignore e0aa2acff9 Initial commit 13 năm trước cách đây
.travis.yml 67823cd24d Create .travis.yml 11 năm trước cách đây
LICENSE 4ab9b1f2d8 Add license 13 năm trước cách đây
README.md a851620020 cron.WithSeconds: add special constructor for the cron spec variety with seconds 6 năm trước cách đây
constantdelay.go f2c3314377 Return an error rather than panicking on invalid cron specs 12 năm trước cách đây
constantdelay_test.go f2c3314377 Return an error rather than panicking on invalid cron specs 12 năm trước cách đây
cron.go 1f8ec97c87 Functional options, Optional seconds, Overridable parser 6 năm trước cách đây
cron_test.go d10bec7141 gofmt 6 năm trước cách đây
doc.go 885d8be770 doc.go: remove second place from descriptor table 6 năm trước cách đây
go.mod 605d51319c spec_test.go: fix tests when run in UTC as local time zone 6 năm trước cách đây
option.go a851620020 cron.WithSeconds: add special constructor for the cron spec variety with seconds 6 năm trước cách đây
option_test.go 1f8ec97c87 Functional options, Optional seconds, Overridable parser 6 năm trước cách đây
parser.go 0f01e6b177 parser: fix combining of Dow and Dom 6 năm trước cách đây
parser_test.go 0f01e6b177 parser: fix combining of Dow and Dom 6 năm trước cách đây
spec.go dbf3220455 spec.go: adjust times when rolling the clock forward to handle non-existent midnight 6 năm trước cách đây
spec_test.go 0f01e6b177 parser: fix combining of Dow and Dom 6 năm trước cách đây

README.md

GoDoc Build Status

cron

DRAFT - Upgrading to v3

cron v3 is a major upgrade to the library that addresses all outstanding bugs, feature requests, and clarifications around usage. It is based on a merge of master which contains various fixes to issues found over the years and the v2 branch which contains some backwards-incompatible features like the ability to remove cron jobs. In addition, v3 adds support for Go Modules and cleans up rough edges like the timezone support.

It is currently IN DEVELOPMENT and will be considered released once a 3.0 version is tagged. It is backwards INCOMPATIBLE with both the v1 and v2 branches.

Updates required:

  • The v1 branch accepted an optional seconds field at the beginning of the cron spec. This is non-standard and has led to a lot of confusion. The new default parser conforms to the standard as described by the Cron wikipedia page.

UPDATING: To retain the old behavior, construct your Cron with a custom parser:

  // Seconds field, required
  cron.New(cron.WithSeconds())

  // Seconds field, optional
  cron.New(
      cron.WithParser(
          cron.SecondOptional | cron.Hour | cron.Dom | cron.Month | cron.Dow | cron.Descriptor))
  • The Cron type now accepts functional options on construction rather than the ad-hoc behavior modification mechanisms before (setting a field, calling a setter).

UPDATING: Code that sets Cron.ErrorLogger or calls Cron.SetLocation must be updated to provide those values on construction.

  • CRON_TZ is now the recommended way to specify the timezone of a single schedule, which is sanctioned by the specification. The legacy "TZ=" prefix will continue to be supported since it is unambiguous and easy to do so.

UPDATING: No update is required.

Planned updates before calling v3 done:

  • Job "Interceptors" (name tbd), which make it easy for callers to mix desired behavior like the following:

    • Recover any panics from jobs
    • Block this job if the previous run hasn't completed yet
    • Logging job invocations
    • Notification when jobs are completed
  • Fix all open bugs

Background - Cron spec format

There are two cron spec formats in common usage:

The original version of this package included an optional "seconds" field, which made it incompatible with both of these formats. Instead, the schedule parser has been extended to support both types.