-
- 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 DecoderResultProvider
Provides the accessor methods for theDecoderResult
property of a decoded message.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DecoderResult
decoderResult()
Returns the result of decoding this object.void
setDecoderResult(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.
-
-