From 8aa804db7f7b1f886dd6bd0c498cc995cd8cebb7 Mon Sep 17 00:00:00 2001 From: huangsimin Date: Tue, 18 Dec 2018 14:38:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0task=E7=9A=84=E5=88=9D?= =?UTF-8?q?=E5=A7=8B=E5=8C=96=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- person.go | 3 +++ task.go | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/person.go b/person.go index 499e7e6..2ea6626 100644 --- a/person.go +++ b/person.go @@ -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 { diff --git a/task.go b/task.go index 011b1cf..f6ced5a 100644 --- a/task.go +++ b/task.go @@ -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