File: scheduler_worker.go

package info (click to toggle)
gitlab-agent 16.11.5-1
  • links: PTS, VCS
  • area: contrib
  • in suites: experimental
  • size: 7,072 kB
  • sloc: makefile: 193; sh: 55; ruby: 3
file content (18 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package agent

import (
	"context"

	"github.com/robfig/cron/v3"
)

type schedulerWorker struct {
	job     Job
	cadence cron.Schedule
}

func (w *schedulerWorker) Run(ctx context.Context) {
	scheduler := NewCronScheduler()
	scheduler.Schedule(ctx, w.cadence, w.job)
	scheduler.Run(ctx)
}