Skip to content

Instantly share code, notes, and snippets.

@hfhimage
Last active September 16, 2022 09:26
Show Gist options
  • Save hfhimage/b39fcf9cf0c3519bb4aa38970827b535 to your computer and use it in GitHub Desktop.
Save hfhimage/b39fcf9cf0c3519bb4aa38970827b535 to your computer and use it in GitHub Desktop.
go 定时器
ticker := time.NewTicker(frequency)
defer ticker.Stop()
for range ticker.C {
// do your stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment