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

Packages that use ProtocolDecoderOutput
org.apache.mina.filter.codec Filter implementations that helps you to implement complex protocols via 'codec' concept. 
org.apache.mina.filter.codec.asn1 Protocol codec which provides the integration with Apache ASN1
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   
 

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

Methods in org.apache.mina.filter.codec with parameters of type ProtocolDecoderOutput
 void SynchronizedProtocolDecoder.decode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out)
           
 void ProtocolDecoder.decode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out)
          Decodes binary or protocol-specific content into higher-level message objects.
 void CumulativeProtocolDecoder.decode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out)
          Cumulates content of in into internal buffer and forwards decoding request to CumulativeProtocolDecoder.doDecode(IoSession, ByteBuffer, ProtocolDecoderOutput).
protected abstract  boolean CumulativeProtocolDecoder.doDecode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out)
          Implement this method to consume the specified cumulative buffer and decode its content into message(s).
 

Uses of ProtocolDecoderOutput in org.apache.mina.filter.codec.asn1
 

Methods in org.apache.mina.filter.codec.asn1 with parameters of type ProtocolDecoderOutput
 void Asn1CodecDecoder.decode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out)
           
 

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

Methods in org.apache.mina.filter.codec.demux with parameters of type ProtocolDecoderOutput
 MessageDecoderResult MessageDecoder.decode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out)
          Decodes binary or protocol-specific content into higher-level message objects.
 

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

Methods in org.apache.mina.filter.codec.netty with parameters of type ProtocolDecoderOutput
 void NettyDecoder.decode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out)
           
 

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

Methods in org.apache.mina.filter.codec.serialization with parameters of type ProtocolDecoderOutput
protected  boolean ObjectSerializationDecoder.doDecode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out)
           
 

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

Methods in org.apache.mina.filter.codec.textline with parameters of type ProtocolDecoderOutput
 void TextLineDecoder.decode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out)