public class MessageDecoderResult
extends java.lang.Object
MessageDecoder.MessageDecoder| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
name |
static MessageDecoderResult |
NEED_DATA
Represents a result from
MessageDecoder.decodable(IoSession, IoBuffer)
and MessageDecoder.decode(IoSession, IoBuffer, ProtocolDecoderOutput). |
static MessageDecoderResult |
NOT_OK
Represents a result from
MessageDecoder.decodable(IoSession, IoBuffer)
and MessageDecoder.decode(IoSession, IoBuffer, ProtocolDecoderOutput). |
static MessageDecoderResult |
OK
Represents a result from
MessageDecoder.decodable(IoSession, IoBuffer)
and MessageDecoder.decode(IoSession, IoBuffer, ProtocolDecoderOutput). |
| Modifier | Constructor and Description |
|---|---|
private |
MessageDecoderResult(java.lang.String name) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
public static final MessageDecoderResult OK
MessageDecoder.decodable(IoSession, IoBuffer)
and MessageDecoder.decode(IoSession, IoBuffer, ProtocolDecoderOutput).
Please refer to each method's documentation for detailed explanation.public static final MessageDecoderResult NEED_DATA
MessageDecoder.decodable(IoSession, IoBuffer)
and MessageDecoder.decode(IoSession, IoBuffer, ProtocolDecoderOutput).
Please refer to each method's documentation for detailed explanation.public static final MessageDecoderResult NOT_OK
MessageDecoder.decodable(IoSession, IoBuffer)
and MessageDecoder.decode(IoSession, IoBuffer, ProtocolDecoderOutput).
Please refer to each method's documentation for detailed explanation.private final java.lang.String name