org.apache.mina.filter.codec.netty
Class NettyDecoder
java.lang.Object
org.apache.mina.filter.codec.ProtocolDecoderAdapter
org.apache.mina.filter.codec.netty.NettyDecoder
- All Implemented Interfaces:
- ProtocolDecoder
public class NettyDecoder
- extends ProtocolDecoderAdapter
A MINA ProtocolDecoder
that decodes buffers into
Netty2 Message
s using specified MessageRecognizer
s.
- Version:
- $Rev: 581243 $, $Date: 2007-10-02 15:59:36 +0200 (Tue, 02 Oct 2007) $,
- Author:
- The Apache MINA Project (dev@mina.apache.org)
Constructor Summary |
NettyDecoder(net.gleamynode.netty2.MessageRecognizer recognizer)
Creates a new instance with the specified MessageRecognizer . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NettyDecoder
public NettyDecoder(net.gleamynode.netty2.MessageRecognizer recognizer)
- Creates a new instance with the specified
MessageRecognizer
.
decode
public void decode(IoSession session,
IoBuffer in,
ProtocolDecoderOutput out)
throws Exception
- Description copied from interface:
ProtocolDecoder
- Decodes binary or protocol-specific content into higher-level message objects.
MINA invokes
ProtocolDecoder.decode(IoSession, IoBuffer, ProtocolDecoderOutput)
method with read data, and then the decoder implementation puts decoded
messages into ProtocolDecoderOutput
.
- Throws:
Exception
- if the read data violated protocol specification
Copyright © 2004-2009 Apache MINA Project. All Rights Reserved.