栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

如何停止同一goroutine的multilpe之一

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

如何停止同一goroutine的multilpe之一

您无法从外部停止goroutine。您必须将某种取消信号传递给每个goroutine,并记住它们,以备以后在main
goroutine中使用。甲上下文通常被用作一个消除信号。然后,goroutine必须检查取消并自动退出:

package mainimport (    "context")type Event struct {    Action string    URI    string}func main() {    var eventCh chan Event    ctx := context.Background()    cancels := make(map[string]context.CancelFunc) // Maps URIs to cancellation functions.    for event := range eventCh {        switch event.Action {        case "START": if cancels[event.URI] != nil {     panic("duplicate URI: " + event.URI) } ctx, cancel := context.WithCancel(ctx) cancels[event.URI] = cancel defer cancel() // cancel must always be called to free resources. go func(u string) {     // Awesome goroutine pre     // Check ctx.Done or ctx.Err in strategic places and return if done.     select {     case <-ctx.Done():         return     default:     }     // More awesome goroutine pre     if ctx.Err() != nil {         return     }     // Even more awesome goroutine pre }(event.URI)        case "STOP": if cancel, ok := cancels[event.URI]; ok {     cancel()     delete(cancels, event.URI) }        }    }}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/381301.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号