添加task的初始化接口

This commit is contained in:
huangsimin 2018-12-18 14:38:59 +08:00
parent 8f68634adc
commit 8aa804db7f
2 changed files with 8 additions and 0 deletions

View File

@ -14,6 +14,7 @@ import (
// ITask 继承这个接口的类
type ITask interface {
Execute(data interface{}) ITask
Init()
SetCrontab(cron string)
SetLastStatus(status bool)
@ -154,6 +155,8 @@ func (person *Person) Execute() {
// initTask 生成一个新任务
func initTask(conf *Config, task ITask, curl *curl2info.CURL) {
task.Init()
if curl.Crontab != "" {
task.SetCrontab(curl.Crontab)
} else {

View File

@ -22,6 +22,11 @@ type Task struct {
proxies clinked.CircularLinked
}
// Init 初始化, 会被Persion默认调用, 可以用来覆盖
func (task *Task) Init() {
}
// SetName 任务的名字
func (task *Task) SetName(name string) {
task.name = name