dongxiangchan0743 2018-04-23 23:12
浏览 5
已采纳

在Go中执行协调的goroutine

I would like to know how to coordinate routines in Go. A real case would be to coordinate two resources obtained through a request http. For example in node Nodejs would solve this with: 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

}

The first one to be resolved is placed over the others, but how can I identify each one?

Thanks for you time.

  • 写回答

1条回答 默认 最新

  • douzhimei8259 2018-04-23 23:17
    关注

    Use 2 channels. They will still run concurrently, and you can keep track of which is which.

    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
    
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 求恶意流量检测系统搭建教程( C++ python C)
  • ¥15 mmseqs内存报错
  • ¥15 vika文档如何与obsidian同步
  • ¥15 华为手机相册里面的照片能够替换成自己想要的照片吗?
  • ¥15 陆空双模式无人机飞控设置
  • ¥15 sentaurus lithography
  • ¥100 求抖音ck号 或者提ck教程
  • ¥15 关于#linux#的问题:子进程1等待子进程A、B退出后退出(语言-c语言)
  • ¥20 web页面如何打开Outlook 365的全球离线通讯簿功能
  • ¥15 io.jsonwebtoken.security.Keys