CloseNotify implements the http.CloseNotifier interface.
()
| 122 | |
| 123 | // CloseNotify implements the http.CloseNotifier interface. |
| 124 | func (w *responseWriter) CloseNotify() <-chan bool { |
| 125 | return w.ResponseWriter.(http.CloseNotifier).CloseNotify() |
| 126 | } |
| 127 | |
| 128 | // Flush implements the http.Flusher interface. |
| 129 | func (w *responseWriter) Flush() { |
no outgoing calls