Browse Source

Merge pull request #626 from skibum55/dev

Add function argument missing
tags/v1.2.0-rc1
无闻 10 years ago
parent
commit
437dd5272f
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      modules/cron/doc.go

+ 3
- 3
modules/cron/doc.go View File

@@ -7,9 +7,9 @@ Callers may register Funcs to be invoked on a given schedule. Cron will run
them in their own goroutines. them in their own goroutines.


c := cron.New() c := cron.New()
c.AddFunc("0 30 * * * *", func() { fmt.Println("Every hour on the half hour") })
c.AddFunc("@hourly", func() { fmt.Println("Every hour") })
c.AddFunc("@every 1h30m", func() { fmt.Println("Every hour thirty") })
c.AddFunc("Every hour on the half hour","0 30 * * * *", func() { fmt.Println("Every hour on the half hour") })
c.AddFunc("Every hour","@hourly", func() { fmt.Println("Every hour") })
c.AddFunc("Every hour and a half","@every 1h30m", func() { fmt.Println("Every hour thirty") })
c.Start() c.Start()
.. ..
// Funcs are invoked in their own goroutine, asynchronously. // Funcs are invoked in their own goroutine, asynchronously.


Loading…
Cancel
Save