Package io.netty.handler.codec
Interface DecoderResultProvider
-
- All Known Subinterfaces:
BinaryMemcacheMessage,BinaryMemcacheRequest,BinaryMemcacheResponse,FullBinaryMemcacheRequest,FullBinaryMemcacheResponse,FullHttpMessage,FullHttpRequest,FullHttpResponse,FullMemcacheMessage,HttpContent,HttpMessage,HttpObject,HttpRequest,HttpResponse,LastHttpContent,LastMemcacheContent,LastStompContentSubframe,MemcacheContent,MemcacheMessage,MemcacheObject,Socks4CommandRequest,Socks4CommandResponse,Socks4Message,Socks5CommandRequest,Socks5CommandResponse,Socks5InitialRequest,Socks5InitialResponse,Socks5Message,Socks5PasswordAuthRequest,Socks5PasswordAuthResponse,Socks5PrivateAuthRequest,Socks5PrivateAuthResponse,SocksMessage,StompContentSubframe,StompFrame,StompHeadersSubframe,StompSubframe
- All Known Implementing Classes:
AbstractBinaryMemcacheMessage,AbstractMemcacheObject,AbstractSocks4Message,AbstractSocks5Message,AbstractSocksMessage,DefaultBinaryMemcacheRequest,DefaultBinaryMemcacheResponse,DefaultFullBinaryMemcacheRequest,DefaultFullBinaryMemcacheResponse,DefaultFullHttpRequest,DefaultFullHttpResponse,DefaultHttpContent,DefaultHttpMessage,DefaultHttpObject,DefaultHttpRequest,DefaultHttpResponse,DefaultLastHttpContent,DefaultLastMemcacheContent,DefaultLastStompContentSubframe,DefaultMemcacheContent,DefaultSocks4CommandRequest,DefaultSocks4CommandResponse,DefaultSocks5CommandRequest,DefaultSocks5CommandResponse,DefaultSocks5InitialRequest,DefaultSocks5InitialResponse,DefaultSocks5PasswordAuthRequest,DefaultSocks5PasswordAuthResponse,DefaultSocks5PrivateAuthRequest,DefaultSocks5PrivateAuthResponse,DefaultStompContentSubframe,DefaultStompFrame,DefaultStompHeadersSubframe
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.
-
-