Documentation ¶
Overview ¶
Package scheduledtask implements a task scheduler.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Job ¶
A Job is a function that is scheduled to run periodically.
The Job itself controls its schedule by returning the next time it should run.
type Scheduler ¶
type Scheduler struct {
// contains filtered or unexported fields
}
Scheduler is a task scheduler for the controller.
Each job runs in its own goroutine.
The scheduler uses a consistent hash ring to attempt to ensure that jobs are only run on a single controller at a time. This is not guaranteed, however, as the hash ring is only updated periodically and controllers may have inconsistent views of the hash ring.
func NewForTesting ¶ added in v0.104.1
Click to show internal directories.
Click to hide internal directories.