| 28 | const AbortIndex int8 = math.MaxInt8 / 2 |
| 29 | |
| 30 | type Context struct { |
| 31 | Writer *RESPHandle.WriterHandle |
| 32 | // Args [][]byte |
| 33 | Args []interface{} |
| 34 | Cmd string |
| 35 | Handlers HandlersChain // Middleware and final handler functions |
| 36 | Index int8 |
| 37 | Op OpFlag |
| 38 | Reply interface{} |
| 39 | } |
| 40 | |
| 41 | func (c *Context) Reset() { |
| 42 | c.Writer = nil |
nothing calls this directly
no outgoing calls
no test coverage detected