var startSign = true
var closeSign = make(chan int)
func (this *test) HandleTest(ctx *ripple.Context) {
ctx.Response.Body = bson.M{"Status": "Success"}
if startSign == true { //默认第一次请求为true
go this.Test(ctx, closeSign)
startSign = false //第一次请求后设置为false
} else {
closeSign <- 1 //第二次请求时向通道传输数据
go this.Test(ctx, closeSign)//启动第二次请求的协程
}
return
}
func (this *test) Test(ctx *ripple.Context, closeSign chan int) {
log.Info("begin GainPeakFlow")
for {
select {
case <-closeSign:
log.Error("done") //第二次请求前收到通道的数据,退出第一次请求时的协程
return
default:
time.Sleep(1 * time.Second)
log.Error("handle ing")
}
}
return
}
go语言http请求退出上一次的协程并启动新的协程
最新推荐文章于 2023-05-10 10:56:09 发布