1 Star 0 Fork 0

1994net/jobrunner

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stopjob.go 396 Bytes
一键复制 编辑 原始数据 按行查看 历史
package jobrunner
import "github.com/robfig/cron/v3"
// Stop ALL active jobs from running at the next scheduled time
func Stop() {
go MainCron.Stop()
}
// Remove a specific job from running
// Get EntryID from the list job entries jobrunner.Entries()
// If job is in the middle of running, once the process is finished it will be removed
func Remove(id cron.EntryID) {
MainCron.Remove(id)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/1994net/jobrunner.git
git@gitee.com:1994net/jobrunner.git
1994net
jobrunner
jobrunner
master

搜索帮助