- context與任務(wù)取消
- 根context:通過(guò)context.Background()創(chuàng)建
- 子context:context.WithCancel(parentContext)創(chuàng)建
- ctx,cancel:=context.WithCancel(context.Background())
- 當(dāng)前context被取消時(shí) 基于他的子context都會(huì)被取消
- 接收取消通知 <-ctx.Done()
func iscanceled(ctx context.Context) bool {
select {
case <-ctx.Done():
return true
default:
return false
}
}
func dowork() {
time.Sleep(time.Second)
}
func main() {
ctx, cancelfunc := context.WithCancel(context.Background())
for i := 0; i < 5; i++ {
go func(i int, ctx context.Context) {
for {
if iscanceled(ctx) {
break
}
dowork()
}
fmt.Println(i, "canceled.")
}(i, ctx)
}
cancelfunc()
time.Sleep(time.Second * 2)
}