Skip to content

Instantly share code, notes, and snippets.

@dtest11
Created November 1, 2021 08:29
Show Gist options
  • Save dtest11/0fe3720f72c33dd6f69bfbc2de5bbeae to your computer and use it in GitHub Desktop.
Save dtest11/0fe3720f72c33dd6f69bfbc2de5bbeae to your computer and use it in GitHub Desktop.
func (s *Server) startGoRoutine(f func()) bool {
var started bool
s.grMu.Lock()
if s.grRunning {
s.grWG.Add(1)
go f()
started = true
}
s.grMu.Unlock()
return started
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment