加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

golang捕获http.ResponseWriter被close的两种方式(有无context

发布时间:2020-12-16 18:40:43 所属栏目:大数据 来源:网络整理
导读:golang捕获http.ResponseWriter被close的两种方式(有无context) 方便被传阅,采用中文,其实习惯看英文后,发现中文对于一些问题,读起来绕口,接下来有很多也是直接照搬英文,以下几个方面简单介绍下: - 为嘛服务端需要知道http连接被断开(客户端主动ca

golang捕获http.ResponseWriter被close的两种方式(有无context)

方便被传阅,采用中文,其实习惯看英文后,发现中文对于一些问题,读起来绕口,接下来有很多也是直接照搬英文,以下几个方面简单介绍下:
- 为嘛服务端需要知道http连接被断开(客户端主动cancel)
- 最简单的方式捕获
- 当使用了context来传递信息时,如何捕获
- context捕获后,如何继续传递


需求

吐槽下自己 ,第一次用CSDN的新款编辑器很是生疏

Most web requests by design take only a few dozen milliseconds to process. But sometimes web apps need to leave a connection open for a longer period of time. And sometimes the remote client closes the connection before the server has had time to respond.

On a Go-based webserver,you can receive notifications when the HTTP connection terminates.
这讲的就很好,客户端它要是关了怎么办,咱们不能坐以待毙啊。

捕获cancel的通知

一个简单的用法
Start with an HTTP handler function,and get the channel for close notifications:

func SomeHandler(resp http.ResonseWriter,req *http.Request) {
// Normal stuff
//…

notify := resp.(CloseNotifier).CloseNotify()

go func() {
    <-notify
    lock.RLock()
    fmt.Println("HTTP connection just closed.")
    lock.RUnlock()
}()

}

当传入参数不确定是否是resp时
先做个简单的判断,采用reflect,假设resp 是你认为的http.ResponseWriter
v := reflect.ValueOf(resp)
v = reflect.Indirect(v)
for v.Kind() == reflect.Struct {
if fv := v.FieldByName(“ResponseWriter”); fv.IsValid() {
if cn,ok = fv.Interface().(http.CloseNotifier); ok {
return
}
v = reflect.Indirect(fv)
} else {
break
}
}

通知只有一次,需要向后继续传递

这是golang关于context的介绍,https://godoc.org/golang.org/x/net/context

ctx,cancel := context.WithCancel(context.Background()) 当获得通知后,执行了cancel方法,如果后续操作也依赖这个通知,这时需要获得另一个信号,ctx.Done()

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读