Package io.netty.handler.codec
Interface DecoderResultProvider
-
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.
-
-