-
- All Known Subinterfaces:
FullHttpMessage<R>,FullHttpRequest,FullHttpResponse,HttpContent<R>,HttpMessage,HttpObject,HttpRequest,HttpResponse,LastHttpContent<R>
- All Known Implementing Classes:
DefaultFullHttpRequest,DefaultFullHttpResponse,DefaultHttpContent,DefaultHttpMessage,DefaultHttpObject,DefaultHttpRequest,DefaultHttpResponse,DefaultLastHttpContent,EmptyLastHttpContent
public interface DecoderResultProviderProvides the accessor methods for theDecoderResultproperty of a decoded message.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DecoderResultdecoderResult()Returns the result of decoding this object.voidsetDecoderResult(DecoderResult result)Updates the result of decoding this object.
-
-
-
Method Detail
-
decoderResult
DecoderResult decoderResult()
Returns the result of decoding this object.
-
setDecoderResult
void setDecoderResult(DecoderResult result)
Updates the result of decoding this object. This method is supposed to be invoked by a decoder. Do not call this method unless you know what you are doing.
-
-