Uses of Interface
org.apache.mina.filter.codec.ProtocolDecoder

Packages that use ProtocolDecoder
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.netty Protocol codec which provides the integration with Netty2 messages. 
org.apache.mina.filter.codec.serialization Protocol codecs which uses Java object serilization and leads to rapid protocol implementation. 
org.apache.mina.filter.codec.textline A protocol codec for text-based protocols. 
 

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

Classes in org.apache.mina.filter.codec that implement ProtocolDecoder
 class CumulativeProtocolDecoder
          A ProtocolDecoder that cumulates the content of received buffers to a cumulative buffer to help users implement decoders.
 class ProtocolDecoderAdapter
          An abstract ProtocolDecoder implementation for those who don't need finishDecode(IoSession, ProtocolDecoderOutput) nor dispose(IoSession) method.
 class SynchronizedProtocolDecoder
          A ProtocolDecoder implementation which decorates an existing decoder to be thread-safe.
 

Methods in org.apache.mina.filter.codec that return ProtocolDecoder
 ProtocolDecoder ProtocolCodecFactory.getDecoder()
          Returns a new (or reusable) instance of ProtocolDecoder which decodes binary or protocol-specific data into message objects.
 ProtocolDecoder SynchronizedProtocolDecoder.getDecoder()
          Returns the decoder this decoder is decorating.
 

Constructors in org.apache.mina.filter.codec with parameters of type ProtocolDecoder
ProtocolCodecFilter(ProtocolEncoder encoder, ProtocolDecoder decoder)
           
SynchronizedProtocolDecoder(ProtocolDecoder decoder)
          Creates a new instance which decorates the specified decoder.
 

Constructor parameters in org.apache.mina.filter.codec with type arguments of type ProtocolDecoder
ProtocolCodecFilter(Class<? extends ProtocolEncoder> encoderClass, Class<? extends ProtocolDecoder> decoderClass)
           
 

Uses of ProtocolDecoder in org.apache.mina.filter.codec.demux
 

Methods in org.apache.mina.filter.codec.demux that return ProtocolDecoder
 ProtocolDecoder DemuxingProtocolCodecFactory.getDecoder()
           
 

Uses of ProtocolDecoder in org.apache.mina.filter.codec.netty
 

Classes in org.apache.mina.filter.codec.netty that implement ProtocolDecoder
 class NettyDecoder
          A MINA ProtocolDecoder that decodes byte buffers into Netty2 Messages using specified MessageRecognizers.
 

Methods in org.apache.mina.filter.codec.netty that return ProtocolDecoder
 ProtocolDecoder NettyCodecFactory.getDecoder()
           
 

Uses of ProtocolDecoder in org.apache.mina.filter.codec.serialization
 

Classes in org.apache.mina.filter.codec.serialization that implement ProtocolDecoder
 class ObjectSerializationDecoder
          A ProtocolDecoder which deserializes Serializable Java objects using ByteBuffer.getObject(ClassLoader).
 

Methods in org.apache.mina.filter.codec.serialization that return ProtocolDecoder
 ProtocolDecoder ObjectSerializationCodecFactory.getDecoder()
           
 

Uses of ProtocolDecoder in org.apache.mina.filter.codec.textline
 

Classes in org.apache.mina.filter.codec.textline that implement ProtocolDecoder
 class TextLineDecoder
          A ProtocolDecoder which decodes a text line into a string.
 

Methods in org.apache.mina.filter.codec.textline that return ProtocolDecoder
 ProtocolDecoder TextLineCodecFactory.getDecoder()
           
 



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