Job scheduling made easy.
Scheduler allows you to schedule recurrent jobs with an easy-to-read syntax.
Inspired by the article Rethinking Cron and the schedule python module.
package main
import (
"fmt"
"runtime"
"time"
"github.com/carlescere/scheduler"
)
func main() {
job := func() {
t := time.Now()
fmt.Println("Time's up! @", t.UTC())
}
// Run every 2 seconds but not now.
scheduler.Every(2).Seconds().NotImmediately().Run(job)
// Run now and every X.
scheduler.Every(5).Minutes().Run(job)
scheduler.Every().Day().Run(job)
scheduler.Every().Monday().At("08:30").Run(job)
// Keep the program from not exiting.
runtime.Goexit()
}By specifying the chain of calls, a Job struct is instantiated and a goroutine is starts observing the Job.
The goroutine will be on pause until:
- The next run scheduled is due. This will cause to execute the job.
- The
SkipWaitchannel is activated. This will cause to execute the job. - The
Quitchannel is activated. This will cause to finish the job.
By default the behaviour of the recurrent jobs (Every(N) seconds, minutes, hours) is to start executing the job right away and then wait the required amount of time. By calling specifically .NotImmediately() you can override that behaviour and not execute it directly when the function Run() is called.
scheduler.Every(5).Minutes().NotImmediately().Run(job)Distributed under MIT license. See LICENSE for more information.