3 Star 2 Fork 1

洪流 / common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
job.go 475 Bytes
一键复制 编辑 原始数据 按行查看 历史
洪流 提交于 2022-11-19 16:20 . 添加定时任务基础设施
/*
* @Author: hongliu
* @Date: 2022-11-19 15:55:10
* @LastEditors: hongliu
* @LastEditTime: 2022-11-19 15:55:20
* @FilePath: \common\infra\common\job.go
* @Description: 定时任务基础设施接口定义
*
* Copyright (c) 2022 by 洪流, All Rights Reserved.
*/
package common
type Job interface {
AddTask(name string, expr string, job func() error) error // 增加定时任务
RemoveTask(name string) error // 移除定时任务
}
Go
1
https://gitee.com/hongliu9527/common.git
git@gitee.com:hongliu9527/common.git
hongliu9527
common
common
v1.0.4

搜索帮助