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

Packages that use ProtocolDecoderOutput
org.apache.mina.examples.reverser Reverser server which reverses all text lines demonstating high-level protocol layer. 
org.apache.mina.examples.sumup.codec   
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.examples.reverser
 

Methods in org.apache.mina.examples.reverser with parameters of type ProtocolDecoderOutput
 void TextLineDecoder.decode(ProtocolSession session, ByteBuffer in, ProtocolDecoderOutput out)
           
 

Uses of ProtocolDecoderOutput in org.apache.mina.examples.sumup.codec
 

Methods in org.apache.mina.examples.sumup.codec with parameters of type ProtocolDecoderOutput
 MessageDecoderResult AbstractMessageDecoder.decode(ProtocolSession session, ByteBuffer in, ProtocolDecoderOutput out)
           
 

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
 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).
 MessageDecoderResult MessageDecoder.decode(ProtocolSession session, ByteBuffer in, ProtocolDecoderOutput out)
          Decodes binary or protocol-specific content into higher-level message objects.
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-2009 . All Rights Reserved.