blob: 64d31ecc3ef430a9d52c80411b34edae9046c3c7 [file] [log] [blame]
Don Newtone0d34a82019-11-14 10:58:06 -05001// 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
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +00005//go:build go1.9
Don Newtone0d34a82019-11-14 10:58:06 -05006// +build go1.9
7
8package context
9
10import "context" // standard library's context, as of Go 1.7
11
12// A Context carries a deadline, a cancelation signal, and other values across
13// API boundaries.
14//
15// Context's methods may be called by multiple goroutines simultaneously.
16type Context = context.Context
17
18// A CancelFunc tells an operation to abandon its work.
19// A CancelFunc does not wait for the work to stop.
20// After the first call, subsequent calls to a CancelFunc do nothing.
21type CancelFunc = context.CancelFunc