2021-04-13 06:04:13 +02:00
|
|
|
import context
|
|
|
|
import time
|
|
|
|
|
|
|
|
const (
|
|
|
|
// a reasonable duration to block in an example
|
|
|
|
short_duration = 1 * time.millisecond
|
|
|
|
)
|
|
|
|
|
|
|
|
// This example passes a context with an arbitrary deadline to tell a blocking
|
|
|
|
// function that it should abandon its work as soon as it gets to it.
|
|
|
|
fn test_with_deadline() {
|
|
|
|
dur := time.now().add(short_duration)
|
2021-10-11 14:41:31 +02:00
|
|
|
mut background := context.background()
|
2021-10-14 12:32:42 +02:00
|
|
|
mut ctx, cancel := context.with_deadline(mut &background, dur)
|
2021-04-13 06:04:13 +02:00
|
|
|
|
|
|
|
defer {
|
|
|
|
// Even though ctx will be expired, it is good practice to call its
|
|
|
|
// cancellation function in any case. Failure to do so may keep the
|
|
|
|
// context and its parent alive longer than necessary.
|
2021-09-27 16:52:20 +02:00
|
|
|
cancel()
|
2021-04-13 06:04:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx_ch := ctx.done()
|
|
|
|
select {
|
2021-04-25 15:04:07 +02:00
|
|
|
_ := <-ctx_ch {}
|
2021-07-23 22:24:27 +02:00
|
|
|
1 * time.second {
|
2021-04-25 15:04:07 +02:00
|
|
|
panic('This should not happen')
|
2021-04-13 06:04:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This example passes a context with a timeout to tell a blocking function that
|
|
|
|
// it should abandon its work after the timeout elapses.
|
|
|
|
fn test_with_timeout() {
|
|
|
|
// Pass a context with a timeout to tell a blocking function that it
|
|
|
|
// should abandon its work after the timeout elapses.
|
2021-10-11 14:41:31 +02:00
|
|
|
mut background := context.background()
|
2021-10-14 12:32:42 +02:00
|
|
|
mut ctx, cancel := context.with_timeout(mut &background, short_duration)
|
2021-04-13 06:04:13 +02:00
|
|
|
defer {
|
2021-09-27 16:52:20 +02:00
|
|
|
cancel()
|
2021-04-13 06:04:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx_ch := ctx.done()
|
|
|
|
select {
|
2021-04-25 15:04:07 +02:00
|
|
|
_ := <-ctx_ch {}
|
2021-07-23 22:24:27 +02:00
|
|
|
1 * time.second {
|
2021-04-25 15:04:07 +02:00
|
|
|
panic('This should not happen')
|
2021-04-13 06:04:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|