1. 首页
  2. 数据库
  3. 其它
  4. Go Context与任务取消

Go Context与任务取消

上传者: 2021-01-17 05:46:18上传 PDF文件 150.35KB 热度 7次
关联任务的取消 Contex 1、根Context:通过context.Background()创建 2、在Context:context.WithCancel(parentContext)创建 3、ctx,cancel := context.WithCancel(context.Background()) 4、当前Context被取消时,基于它的子context都会被取消 5、接受取消通知 <-ctx.Done() package ch4 import ( context fmt testing time ) func TestCancel(t * testin
用户评论