golang设置每天12点定时任务

前端之家收集整理的这篇文章主要介绍了golang设置每天12点定时任务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package cron

import "time"

func StartTimer(F func()) {
	go func() {
		for {
			F()
			next := now.Add(time.Hour * 24)
			next = time.Date(next.Year(),next.Month(),next.Day(),next.Location())
			t := time.NewTimer(next.Sub(<span style="font-family: Arial,Helvetica,sans-serif;">time.Now()</span><span style="font-family: Arial,sans-serif;">))</span>
			<-t.C
		}
	}()
}
原文链接:https://www.f2er.com/go/189729.html

猜你在找的Go相关文章