1 Star 0 Fork 0

kzangv/gsf-fof

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
limit.go 316 Bytes
一键复制 编辑 原始数据 按行查看 历史
kzangv 提交于 2024-08-28 14:46 . fixed
package schedule
import (
"time"
)
type limit struct {
limit uint
sch Interface
}
func (s *limit) Next(t time.Time) *time.Time {
if s.limit > 0 {
s.limit--
return s.sch.Next(t)
}
return nil
}
func NewLimitSchedule(cnt uint, sch Interface) Interface {
return &limit{
limit: cnt,
sch: sch,
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/kzangv/gsf-fof.git
git@gitee.com:kzangv/gsf-fof.git
kzangv
gsf-fof
gsf-fof
v0.5.2

搜索帮助