我正在使用 go 1.4.2 并且实现似乎没有,CloseNotifier因为我想在长轮询处理程序中使用它,例如:
func Pollhandler(w http.ResponseWriter, r *http.Request) {
notify := w.(CloseNotifier).CloseNotify()
<-notify //should block until the http connection is closed
}
没有为 http 实现 CloseNotifierResponseWriter吗?如果是这样,我该如何解决这个问题?或者是否有任何实现接口的httpResponseWriter实现CloseNotifier?
隔江千里
相关分类