Uses of Class
org.apache.mina.filter.codec.ProtocolDecoderAdapter
Packages that use ProtocolDecoderAdapter
Package
Description
Filter implementations that helps you to implement complex protocols via 'codec' concept.
Protocol codecs that helps you to implement even more complex protocols by splitting a codec into multiple sub-codecs.
Protocol codecs which uses Java object serilization and leads to rapid protocol implementation.
-
Uses of ProtocolDecoderAdapter in org.apache.mina.filter.codec
Subclasses of ProtocolDecoderAdapter in org.apache.mina.filter.codecModifier and TypeClassDescriptionclassAProtocolDecoderthat cumulates the content of received buffers to a cumulative buffer to help users implement decoders. -
Uses of ProtocolDecoderAdapter in org.apache.mina.filter.codec.demux
Subclasses of ProtocolDecoderAdapter in org.apache.mina.filter.codec.demuxModifier and TypeClassDescriptionclassA compositeProtocolDecoderthat demultiplexes incomingIoBufferdecoding requests into an appropriateMessageDecoder. -
Uses of ProtocolDecoderAdapter in org.apache.mina.filter.codec.prefixedstring
Subclasses of ProtocolDecoderAdapter in org.apache.mina.filter.codec.prefixedstringModifier and TypeClassDescriptionclassAProtocolDecoderwhich decodes a String using a fixed-length length prefix. -
Uses of ProtocolDecoderAdapter in org.apache.mina.filter.codec.serialization
Subclasses of ProtocolDecoderAdapter in org.apache.mina.filter.codec.serializationModifier and TypeClassDescriptionclassAProtocolDecoderwhich deserializesSerializableJava objects usingIoBuffer.getObject(ClassLoader).