Documentation ¶
Index ¶
Constants ¶
View Source
const ( MinuteSecond = 60 // 一分钟多少秒 HourSecond = MinuteSecond * 60 // 一小时多少秒 DaySeconds = HourSecond * 24 // 一天多少秒 WeekSecond = DaySeconds * 7 // 一个星期多少秒 MonthSecond = DaySeconds * 30 // 30天多少秒 YearSecond = DaySeconds * 365 // 365天多少秒 )
View Source
const ( TimeFormat = "2006-01-02 15:04:05" DateFormat = "2006-01-02" )
Variables ¶
This section is empty.
Functions ¶
func Initialize ¶
func TimeHourDelta ¶
Types ¶
type CallbackFunc ¶
type CallbackFunc func()
type Timer ¶
type Timer struct {
// contains filtered or unexported fields
}
func RunEveryDay ¶
func RunEveryDay(hour, minute, sec int, callback CallbackFunc) *Timer
func RunEveryHour ¶
func RunEveryHour(minute, sec int, callback CallbackFunc) *Timer
func (*Timer) GetRemainTime ¶
Click to show internal directories.
Click to hide internal directories.