You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

go19.go 695 B

2 years ago
123456789101112131415161718192021
  1. // Copyright 2017 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build go1.9
  5. // +build go1.9
  6. package context
  7. import "context" // standard library's context, as of Go 1.7
  8. // A Context carries a deadline, a cancelation signal, and other values across
  9. // API boundaries.
  10. //
  11. // Context's methods may be called by multiple goroutines simultaneously.
  12. type Context = context.Context
  13. // A CancelFunc tells an operation to abandon its work.
  14. // A CancelFunc does not wait for the work to stop.
  15. // After the first call, subsequent calls to a CancelFunc do nothing.
  16. type CancelFunc = context.CancelFunc