Move ticker to new module

This commit is contained in:
Fred Boniface
2024-03-26 11:44:19 +00:00
parent e204fb04a4
commit cf633eeb8f
4 changed files with 33 additions and 30 deletions

30
src/background/ticker.go Normal file
View File

@@ -0,0 +1,30 @@
package background
import (
"time"
"git.fjla.uk/owlboard/timetable-mgr/cif"
"git.fjla.uk/owlboard/timetable-mgr/helpers"
"git.fjla.uk/owlboard/timetable-mgr/log"
)
const frequency = 5 * time.Millisecond // Figure out a sensible frequency!
func InitTicker(cfg *helpers.Configuration, stop <-chan struct{}) {
go runTicker(cfg, stop)
}
func runTicker(cfg *helpers.Configuration, stop <-chan struct{}) {
log.Msg.Sugar().Infof("Starting background ticker, runs every %s", frequency)
ticker := time.NewTicker(frequency)
defer ticker.Stop()
for {
select {
case <-stop:
return
case <-ticker.C:
cif.CifCheck(cfg)
}
}
}