You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hacks/x/main.go

23 lines
512 B

package main
import "fmt"
import "time"
import "github.com/bamzi/jobrunner"
func main() {
jobrunner.Start() // optional: jobrunner.Start(pool int, concurrent int) (10, 1)
jobrunner.Schedule("@every 5s", ReminderEmails{})
time.Sleep(time.Second * 30)
}
// Job Specific Functions
type ReminderEmails struct {
// filtered
}
// ReminderEmails.Run() will get triggered automatically.
func (e ReminderEmails) Run() {
// Queries the DB
// Sends some email
fmt.Printf("Every 5 sec send reminder emails \n")
}