In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-14 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)05/31 Report--
This article editor for you a detailed introduction of "go language timer Timer and Ticker how to use", the content is detailed, the steps are clear, the details are handled properly, I hope that this "go language timer Timer and Ticker how to use" article can help you solve doubts, the following follow the editor's ideas slowly in-depth, together to learn new knowledge.
Timer 1-"* / 5 *" package mainimport ("fmt"github.com/robfig/cron") / / main function func main () {cron2: = cron.New () / / create an instance of cron / / execute scheduled tasks (every 5 seconds) err:= cron2.AddFunc ("* / 5 *" Print5) if erratic query nil {fmt.Println (err)} / / start / close cron2.Start () defer cron2.Stop () select {/ / query statement Keep the program running This is equivalent to for {} / / execute function func print5 () {fmt.Println ("execute cron every 5s")} setting description ┌─ second range (0-60) │ ┌─ min (0-59) │ │ ┌─ hour (0) -23) │ ┌─ day of month (1-31) │ ┌─ month (1-12) │ ┌─ day of week (0-6) (0 to 6 are Sunday to │ │ Saturday) │ * *
Asterisk (*): indicates that the cron expression can match all values in this field. If you use an asterisk (month) in the fifth field, it indicates that each month
Slash (/): indicates the growth interval. For example, the value of the second field (minutes) is 3-59 minutes 15, indicating that execution starts at the third minute of each hour, and then every 15 minutes (i.e., 3 (3), 18 (3), 33 (3), 48 (3)). Here, it can also be expressed as: 315 jump.
Comma (,): used to enumerate values, for example, the sixth field value is MON,WED,FRI, indicating execution on Monday, Wednesday and Friday
Hyphen (-): indicates a range, for example, a value of 9-17 in the third field indicates 9am to 5pm directly per hour (including 9 and 17)
Question mark (?): used only for Day of month and Day of week, indicating that no value is specified and can be used instead of *
Timer 2-Timer-TickerTimer / / time to generate an event Ticker / / time to cycle to generate an event Timer- only executes package mainimport ("fmt"time") func main () {/ / create a timer, setting the time to 2s after 2s Write content to time channel (current time) timer: = time.NewTimer (2 * time.Second) fmt.Println ("current time:", time.Now ()) / / 2s, then write data to timer.C. After you have the data, you can read t: =
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.