添加task的初始化接口
This commit is contained in:
parent
8f68634adc
commit
8aa804db7f
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue
Block a user