Package io.netty.handler.codec.socksx
Class AbstractSocksMessage
- java.lang.Object
-
- io.netty.handler.codec.socksx.AbstractSocksMessage
-
- All Implemented Interfaces:
DecoderResultProvider
,SocksMessage
- Direct Known Subclasses:
AbstractSocks4Message
,AbstractSocks5Message
public abstract class AbstractSocksMessage extends java.lang.Object implements SocksMessage
An abstractSocksMessage
.
-
-
Constructor Summary
Constructors Constructor Description AbstractSocksMessage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DecoderResult
decoderResult()
Returns the result of decoding this object.void
setDecoderResult(DecoderResult decoderResult)
Updates the result of decoding this object.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.netty.handler.codec.socksx.SocksMessage
version
-
-
-
-
Method Detail
-
decoderResult
public DecoderResult decoderResult()
Description copied from interface:DecoderResultProvider
Returns the result of decoding this object.- Specified by:
decoderResult
in interfaceDecoderResultProvider
-
setDecoderResult
public void setDecoderResult(DecoderResult decoderResult)
Description copied from interface:DecoderResultProvider
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.- Specified by:
setDecoderResult
in interfaceDecoderResultProvider
-
-