Skip to content

Instantly share code, notes, and snippets.

@billyfbrain
Created August 16, 2016 23:19
Show Gist options
  • Select an option

  • Save billyfbrain/91bb3aed87ec550ede4b676975af6164 to your computer and use it in GitHub Desktop.

Select an option

Save billyfbrain/91bb3aed87ec550ede4b676975af6164 to your computer and use it in GitHub Desktop.
stop server
type Server struct {
ctx context.Context
Stop context.CancelFunc
}
func (s *Server) IsShutdown() bool {
select {
case <-s.ctx.Done():
return true
default:
return false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment