ReleaseContext returns the `Context` instance back to the pool. You must call it after `AcquireContext()`.
(c *Context)
| 759 | // ReleaseContext returns the `Context` instance back to the pool. |
| 760 | // You must call it after `AcquireContext()`. |
| 761 | func (e *Echo) ReleaseContext(c *Context) { |
| 762 | e.contextPool.Put(c) |
| 763 | } |
| 764 | |
| 765 | // ServeHTTP implements `http.Handler` interface, which serves HTTP requests. |
| 766 | func (e *Echo) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
no outgoing calls