See: Description
| Interface | Description |
|---|---|
| ProtocolCodecFactory |
Provides
ProtocolEncoder and ProtocolDecoder which translates
binary or protocol specific data into message object and vice versa. |
| ProtocolDecoder |
Decodes binary or protocol-specific data into higher-level message objects.
|
| ProtocolDecoderOutput |
Callback for
ProtocolDecoder to generate decoded messages. |
| ProtocolEncoder |
Encodes higher-level message objects into binary or protocol-specific data.
|
| ProtocolEncoderOutput |
Callback for
ProtocolEncoder to generate encoded messages such as
IoBuffers. |
| Exception | Description |
|---|---|
| ProtocolCodecException |
An exception that is thrown when
ProtocolEncoder or
ProtocolDecoder cannot understand or failed to validate
data to process. |
| ProtocolDecoderException |
An exception that is thrown when
ProtocolDecoder
cannot understand or failed to validate the specified IoBuffer
content. |
| ProtocolEncoderException |
An exception that is thrown when
ProtocolEncoder
cannot understand or failed to validate the specified message object. |
| RecoverableProtocolDecoderException |
A special exception that tells the
ProtocolDecoder can keep
decoding even after this exception is thrown. |