channel使用场景:futures / promises

bocsoft · · 1531 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

golang 虽然没有直接提供 futrue / promise 模型的操作原语,但通过 goroutine 和 channel 可以实现类似的功能:


package main

import (
    "io/ioutil"
    "log"
    "net/http"
)

//http request promise
func RequestFuture(url string) <-chan []byte {
    c := make(chan []byte, 1)
    go func() {
        var body []byte
        defer func() {
            c <- body
        }()

        resp, err := http.Get(url)
        if err != nil {
            return
        }
        defer resp.Body.Close()

        body, _ = ioutil.ReadAll(resp.Body)
    }()

    return c
}

func main() {
    future := RequestFuture("https://api.github.com/users/octocat/orgs")
    body := <-future
    log.Printf("reponse length: %d", len(body))
    log.Printf("response content: %s",string(body))

    /*
     输出内容:
2018/12/10 16:14:24 reponse length: 2
2018/12/10 16:14:24 response content: []
     */
}




有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:bocsoft

查看原文:channel使用场景:futures / promises

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1531 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传