Uses of Class
org.apache.mina.filter.codec.ProtocolDecoderAdapter

Packages that use ProtocolDecoderAdapter
org.apache.mina.example.imagine.step1.codec   
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. 
 

Uses of ProtocolDecoderAdapter in org.apache.mina.example.imagine.step1.codec
 

Subclasses of ProtocolDecoderAdapter in org.apache.mina.example.imagine.step1.codec
 class ImageRequestDecoder
          a decoder for ImageRequest objects
 class ImageResponseDecoder
          a decoder for ImageResponse objects
 

Uses of ProtocolDecoderAdapter in org.apache.mina.filter.codec
 

Subclasses of ProtocolDecoderAdapter in org.apache.mina.filter.codec
 class CumulativeProtocolDecoder
          A ProtocolDecoder that 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.demux
 class DemuxingProtocolDecoder
          A composite ProtocolDecoder that demultiplexes incoming IoBuffer decoding requests into an appropriate MessageDecoder.
 

Uses of ProtocolDecoderAdapter in org.apache.mina.filter.codec.prefixedstring
 

Subclasses of ProtocolDecoderAdapter in org.apache.mina.filter.codec.prefixedstring
 class PrefixedStringDecoder
          A ProtocolDecoder which 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.serialization
 class ObjectSerializationDecoder
          A ProtocolDecoder which deserializes Serializable Java objects using IoBuffer.getObject(ClassLoader).
 



Copyright © 2004-2011 Apache MINA Project. All Rights Reserved.