我想知道如何协调Go中的例程。一个真实的案例是协调通过请求http获得的两个资源。例如,节点Nodejs将使用:Promise.all [service1, service2]
func request(c chan bool, ms time.Duration, val bool) {
time.Sleep(ms * time.Millisecond)
c <- val
}
func main() {
c := make(chan bool, 2)
go request(c, 1000, true)
go request(c, 0, false)
first, second := <-c, <-c
fmt.Println(first, second) // output false true
}
要解决的第一个问题放在其他问题上,但我如何识别每一个?
谢谢你的时间。
答案 0 :(得分:0)
使用2个频道。它们仍将同时运行,您可以跟踪哪个是哪个。
func request(c chan bool, ms time.Duration, val bool) {
time.Sleep(ms * time.Millisecond)
c <- val
}
func main() {
c1 := make(chan bool)
c2 := make(chan bool)
go request(c1, 1000, true)
go request(c2, 0, false)
first := <-c1
second := <-c2
fmt.Println(first, second) // output false true
}