We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e192b9d commit b910f1bCopy full SHA for b910f1b
context.go
@@ -35,6 +35,12 @@ type Context interface {
35
ParseMultipartForm(maxMemory int64) error
36
Set(key interface{}, value interface{})
37
Get(key interface{}) (value interface{}, exists bool)
38
+ Context() context.Context
39
+ WithContext(context.Context)
40
+ WithCancel() context.CancelFunc
41
+ WithDeadline(time.Time) context.CancelFunc
42
+ WithTimeout(time.Duration) context.CancelFunc
43
+ WithValue(key interface{}, val interface{})
44
Next()
45
RequestStart(w http.ResponseWriter, r *http.Request)
46
RequestEnd()
0 commit comments