MCPcopy Create free account
hub / github.com/codnect/chrono / Schedule

Method Schedule

executor.go:11–11  ·  view source on GitHub ↗
(task Task, delay time.Duration)

Source from the content-addressed store, hash-verified

9
10type TaskExecutor interface {
11 Schedule(task Task, delay time.Duration) (ScheduledTask, error)
12 ScheduleWithFixedDelay(task Task, initialDelay time.Duration, delay time.Duration) (ScheduledTask, error)
13 ScheduleAtFixedRate(task Task, initialDelay time.Duration, period time.Duration) (ScheduledTask, error)
14 IsShutdown() bool

Implementers 3

Calls

no outgoing calls