2017-05-13 19:02:06 +02:00
|
|
|
package middlewares
|
|
|
|
|
|
|
|
import "net/http"
|
|
|
|
|
|
|
|
// Stateful interface groups all http interfaces that must be
|
2020-05-11 12:06:07 +02:00
|
|
|
// implemented by a stateful middleware (ie: recorders).
|
2017-05-13 19:02:06 +02:00
|
|
|
type Stateful interface {
|
|
|
|
http.ResponseWriter
|
|
|
|
http.Hijacker
|
|
|
|
http.Flusher
|
|
|
|
http.CloseNotifier
|
|
|
|
}
|