FinalFunc represents a proxy function that is called last in the method call chain, regardless whether whole call chained succeeded with non-nil error or not.
func(r *Request, resp interface{}, err error) (interface{}, error)
| 44 | // in the method call chain, regardless whether whole call |
| 45 | // chained succeeded with non-nil error or not. |
| 46 | type FinalFunc func(r *Request, resp interface{}, err error) (interface{}, error) |
| 47 | |
| 48 | // Method defines a method and the Handler it is bind to. By default |
| 49 | // "ReturnMethod" handling is used. |
nothing calls this directly
no outgoing calls
no test coverage detected