[GO]conext的使用

Posted baylorqu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[GO]conext的使用相关的知识,希望对你有一定的参考价值。

package main

import (
    "context"
    "time"
    "net/http"
    "fmt"
    "io/ioutil"
)

type Result struct {
    r *http.Response
    err error
}

func process() {
    ctx,cancel := context.WithTimeout(context.Background(), 2*time.Second)
    defer cancel()

    tr := &http.Transport{}
    client := &http.Client{Transport:tr}
    c := make(chan Result, 1)
    req, err := http.NewRequest("GET", "http://google.com", nil)
    if err != nil{
        fmt.Println("http request filed, err:", err)
        return
    }
    go func() {
        resp, err := client.Do(req)
        pack := Result{r:resp, err:err}
        c <- pack
    }()

    select {
    case <- ctx.Done()://内部也是一个管道,如果这个管道能够读到数据,说明已经超时了
        tr.CancelRequest(req)//取消正在请求的http请求
        res := <-c
        fmt.Println("timeout!", res.err)
    case res := <-c:
        defer res.r.Body.Close()
        out, _ := ioutil.ReadAll(res.r.Body)
        fmt.Printf("server response:%s", out)
    }
    return
}

func main() {
    process()
}

执行结果 

timeout! Get http://google.com: net/http: request canceled while waiting for connection

 

以上是关于[GO]conext的使用的主要内容,如果未能解决你的问题,请参考以下文章

解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段

你知道的Go切片扩容机制可能是错的

npm : 无法加载文件 D:softcodeProcess ode ode_global pm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.micr +(代码片段

golang代码片段(摘抄)

windows通过Visual Studio Code中配置GO开发环境(转)

在Visual Studio Code中配置GO开发环境