diff options
Diffstat (limited to 'src/context/withtimeout_test.go')
| -rw-r--r-- | src/context/withtimeout_test.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/context/withtimeout_test.go b/src/context/withtimeout_test.go new file mode 100644 index 0000000000..3ab6fc347f --- /dev/null +++ b/src/context/withtimeout_test.go @@ -0,0 +1,25 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package context_test + +import ( + "context" + "fmt" + "time" +) + +func ExampleWithTimeout() { + // Pass a context with a timeout to tell a blocking function that it + // should abandon its work after the timeout elapses. + ctx, _ := context.WithTimeout(context.Background(), 100*time.Millisecond) + select { + case <-time.After(200 * time.Millisecond): + fmt.Println("overslept") + case <-ctx.Done(): + fmt.Println(ctx.Err()) // prints "context deadline exceeded" + } + // Output: + // context deadline exceeded +} |
