org.apache.mina.filter.codec.netty
Class NettyEncoder

java.lang.Object
  extended byorg.apache.mina.filter.codec.netty.NettyEncoder
All Implemented Interfaces:
ProtocolEncoder

public class NettyEncoder
extends Object
implements ProtocolEncoder

A MINA ProtocolEncoder that encodes Netty2 Messages into byte buffers.

Version:
$Rev: 439913 $, $Date: 2006-09-04 05:12:43 +0200 (Mon, 04 Sep 2006) $,
Author:
The Apache Directory Project (mina-dev@directory.apache.org)

Constructor Summary
NettyEncoder()
          Creates a new instance.
 
Method Summary
 void dispose(IoSession session)
          Releases all resources related with this encoder.
 void encode(IoSession session, Object message, ProtocolEncoderOutput out)
          Encodes higher-level message objects into binary or protocol-specific data.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NettyEncoder

public NettyEncoder()
Creates a new instance.

Method Detail

encode

public void encode(IoSession session,
                   Object message,
                   ProtocolEncoderOutput out)
            throws Exception
Description copied from interface: ProtocolEncoder
Encodes higher-level message objects into binary or protocol-specific data. MINA invokes ProtocolEncoder.encode(IoSession, Object, ProtocolEncoderOutput) method with message which is popped from the session write queue, and then the encoder implementation puts encoded ByteBuffers into ProtocolEncoderOutput.

Specified by:
encode in interface ProtocolEncoder
Throws:
Exception - if the message violated protocol specification

dispose

public void dispose(IoSession session)
             throws Exception
Description copied from interface: ProtocolEncoder
Releases all resources related with this encoder.

Specified by:
dispose in interface ProtocolEncoder
Throws:
Exception - if failed to dispose all resources