doushenmao9036 2014-01-21 17:40
浏览 56
已采纳

在生产者/消费者场景中,如何从消费者那里得到回应?

I've been trying to use channels to build some kind of producer / consumer. I have a requests channel where the many producers push requests, then I have processRequests that handles the requests.

package main

var requests chan string

func processRequests() {
    for {
        request <- requests
        // Process request...
        // And return response - how?
    }
}

func main() {
    requests = make(chan string)

    go processRequests()

    requests <- "doSomething"
    requests <- "doSomethingElse"
    requests <- "etc"

    select {} // Block forever
}

What I'm wondering is what would be the best way to send back a response to the producer (and to the right one, since there's more than one), once the request is fulfilled? Basically how to make this a two way channel?

Any idea how it could be done?

  • 写回答

1条回答 默认 最新

  • doupin1073 2014-01-21 19:06
    关注

    You should really use two channels. Trying to make it work with one channel will be messy.

    There's a Google Sites on the Producer/Consumer pattern that may be useful.

    For the producer to know what the consumer is responding to, you could use a struct for the response:

    type responseMessage struct {
        Request string
        Response string
    }
    
    var requests chan string
    var responses chan *responseMessage
    
    func processRequests() {
        for {
            request <- requests
            // Process request...
            responses <- &responseMessage{request, "some response string"}
        }
    }
    
    func processResponses() {
        someResponseMessage := <- responses
        if someResponseMessage.Request == "doSomething" {
            // do something!
        }
    }
    
    func main() {
        requests = make(chan string)
        responses = make(chan *responseMessage)
    
        go processRequests()
        go processResponses()
    
        requests <- "doSomething"
        requests <- "doSomethingElse"
        requests <- "etc"
    
        select {} // Block forever
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计