github.com/songzhibin97/gkit@v1.2.13/distributed/schedule/timing.go (about)

     1  package schedule
     2  
     3  import "time"
     4  
     5  // Schedule 返回下一次执行的时间
     6  type Schedule interface {
     7  	Next(time time.Time) time.Time
     8  }