Package | Description |
---|---|
org.apache.mina.filter.codec |
Filter implementations that helps you to implement complex protocols via 'codec' concept.
|
org.apache.mina.filter.codec.demux |
Protocol codecs that helps you to implement even more complex protocols by splitting a codec into multiple sub-codecs.
|
org.apache.mina.filter.codec.prefixedstring | |
org.apache.mina.filter.codec.serialization |
Protocol codecs which uses Java object serilization and leads to rapid protocol implementation.
|
Modifier and Type | Class | Description |
---|---|---|
class |
CumulativeProtocolDecoder |
A
ProtocolDecoder that cumulates the content of received buffers to a
cumulative buffer to help users implement decoders. |
Modifier and Type | Class | Description |
---|---|---|
class |
DemuxingProtocolDecoder |
A composite
ProtocolDecoder that demultiplexes incoming IoBuffer
decoding requests into an appropriate MessageDecoder . |
Modifier and Type | Class | Description |
---|---|---|
class |
PrefixedStringDecoder |
A
ProtocolDecoder which decodes a String using a fixed-length length prefix. |
Modifier and Type | Class | Description |
---|---|---|
class |
ObjectSerializationDecoder |
A
ProtocolDecoder which deserializes Serializable Java
objects using IoBuffer.getObject(ClassLoader) . |
Copyright © 2004–2018 Apache MINA Project. All rights reserved.