作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
很快就会明白,我是 golang n00b。
我有一些基于事件 channel 启动 goroutines 的 go 代码。假设它启动了 2 个协程,因为我们收到了 2 个 START 类型的事件。
goroutine 以 uri 作为参数启动,这给了我们一些独特之处。
稍后我们收到一个 STOP 类型的事件。
如何停止使用相同 uri 启动的 goroutine?
for {
select {
case event := <-eventCh:
if event.Entry != nil {
switch event.Action {
case foo.START:
log.Println("uri: ", event.Entry.URI)
go func(c chan []byte, u string) error{
//awesome goroutine code
}(myChan, event.Entry.URI)
case foo.STOP:
log.Println("uri: ", event.Entry.URI)
//I'd like to terminate the goroutine that matches event.Entry.URI
}
}
}
}
最佳答案
您不能“从外部”停止 goroutine。您必须向每个 goroutine 传递某种取消信号,并记住它们以供稍后在主 goroutine 中使用。 Context通常用作取消信号。然后 goroutine 必须检查取消并自动退出:
package main
import (
"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 code
// Check ctx.Done or ctx.Err in strategic places and return if done.
select {
case <-ctx.Done():
return
default:
}
// More awesome goroutine code
if ctx.Err() != nil {
return
}
// Even more awesome goroutine code
}(event.URI)
case "STOP":
if cancel, ok := cancels[event.URI]; ok {
cancel()
delete(cancels, event.URI)
}
}
}
}
关于go - 如何停止同一个 goroutine 的 multilpe 之一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55246721/
我正在将 python 3.4.0 中的 cassandra 与 cassandra-driver 2.5.0 (和 cqlengine 模型)一起使用。 应用程序数据分布在:一个用于管理的 key
当我填充选择器 View 时,我似乎无法显示所有三个选项。它只会给我最后选择的列结果。 import UIKit class ViewThree: UIViewController, UIPicker
很快就会明白,我是 golang n00b。 我有一些基于事件 channel 启动 goroutines 的 go 代码。假设它启动了 2 个协程,因为我们收到了 2 个 START 类型的事件。
我是一名优秀的程序员,十分优秀!