context.go 146 B

123456789101112
  1. package util
  2. import "context"
  3. func IsDone(ctx context.Context) bool {
  4. select {
  5. case <-ctx.Done():
  6. return true
  7. default:
  8. return false
  9. }
  10. }