Uses of Interface
org.apache.mina.protocol.ProtocolDecoderOutput

Packages that use ProtocolDecoderOutput
org.apache.mina.protocol High-level protocol implementation layer (Protocol layer). 
org.apache.mina.protocol.codec Useful ProtocolEncoder and ProtocolDecoder implementations. 
 

Uses of ProtocolDecoderOutput in org.apache.mina.protocol
 

Classes in org.apache.mina.protocol that implement ProtocolDecoderOutput
 class SimpleProtocolDecoderOutput
          A ProtocolDecoderOutput based on queue.
 

Methods in org.apache.mina.protocol with parameters of type ProtocolDecoderOutput
 void ProtocolDecoder.decode(ProtocolSession session, ByteBuffer in, ProtocolDecoderOutput out)
          Decodes binary or protocol-specific content into higher-level message objects.
 

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

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



Copyright © 2004-2005 . All Rights Reserved.