This commit is contained in:
huangsimin 2019-01-04 18:25:18 +08:00
commit f83fd9f635

View File

@ -9,6 +9,8 @@ import (
"strings"
"time"
"github.com/satori/go.uuid"
"474420502.top/eson/structure/circular_linked"
"github.com/Pallinder/go-randomdata"
@ -42,6 +44,7 @@ func (force *Force) NextTime() time.Time {
type Crontab struct {
crontab string
uid uuid.UUID
force *Force
min []timePointer
@ -166,6 +169,12 @@ func (cron *Crontab) String() string {
func (cron *Crontab) FromString(crontab string) error {
crontab = cron.crontab
uid, err := uuid.NewV4()
if err != nil {
panic(err)
}
cron.uid = uid
cron.interval = nil
cron.min = nil
cron.hour = nil
@ -297,7 +306,7 @@ func (cron *Crontab) intervalCalculateNextTime(now time.Time) {
}
log.Println("success:", cron.trueCount, "count time wait:", isecond, "s")
fmt.Println(time.Now().Format("01-02 15:04:05"), cron.uid.String(), "success:", cron.trueCount, " wait:", isecond)
} else {
@ -315,7 +324,7 @@ func (cron *Crontab) intervalCalculateNextTime(now time.Time) {
}
}
log.Println("fail:", cron.failCount, "count time wait:", isecond, "s")
fmt.Println(time.Now().Format("01-02 15:04:05"), cron.uid.String(), "fail:", cron.failCount, " wait:", isecond)
}
iv.Count--