mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 00:25:43 +00:00
38 lines
601 B
Go
38 lines
601 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type BackgroundTask struct {
|
||
|
name string
|
||
|
Interval time.Duration
|
||
|
Fn func(context.Context)
|
||
|
}
|
||
|
|
||
|
func (tsk *BackgroundTask) Name() string {
|
||
|
return tsk.name
|
||
|
}
|
||
|
|
||
|
func NewTask(name string, interval time.Duration, fn func(context.Context)) *BackgroundTask {
|
||
|
return &BackgroundTask{
|
||
|
Interval: interval,
|
||
|
Fn: fn,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (tsk *BackgroundTask) Start(ctx context.Context) error {
|
||
|
timer := time.NewTimer(tsk.Interval)
|
||
|
|
||
|
for {
|
||
|
select {
|
||
|
case <-ctx.Done():
|
||
|
return nil
|
||
|
case <-timer.C:
|
||
|
timer.Reset(tsk.Interval)
|
||
|
tsk.Fn(ctx)
|
||
|
}
|
||
|
}
|
||
|
}
|