Documentation ¶
Index ¶
Constants ¶
View Source
const ( //ErrNotAFunction when passed not a function ErrNotAFunction = Error("method must be function") //ErrNotEnoughArgs when passed less than three args ErrNotEnoughArgs = Error("method needs three args: *http.Request, *args, *reply") //ErrNotEnoughOut when method has not output ErrNotEnoughOut = Error("method needs one out: error") //ErrNotReturnError when method out is not error ErrNotReturnError = Error("method needs one out: error") //ErrFirstArgRequest when first arg is not *http.Request ErrFirstArgRequest = Error("method needs first parameter to be *http.Request") //ErrSecondArgError when 2nd arg is not pointer or not exported ErrSecondArgError = Error("second argument must be a pointer and must be exported") //ErrThirdArgError when 3rd arf is not pointer or not exported ErrThirdArgError = Error("third argument must be a pointer and must be exported") )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CompressionSelector ¶ added in v1.3.0
type CompressionSelector = codec.CompressionSelector
CompressionSelector alias
Click to show internal directories.
Click to hide internal directories.