@ChannelHandler.Sharable public class MarshallingEncoder extends MessageToByteEncoder<Object>
MessageToByteEncoder implementation which uses JBoss Marshalling to marshal
an Object. Be aware that this encoder is not compatible with an other client that just use
JBoss Marshalling as it includes the size of every Object that gets serialized in
front of the Object itself.
Use this with MarshallingDecoder
See JBoss Marshalling website
for more informationsChannelHandler.Sharable| Constructor and Description |
|---|
MarshallingEncoder(MarshallerProvider provider)
Creates a new encoder.
|
| Modifier and Type | Method and Description |
|---|---|
void |
encode(ChannelHandlerContext ctx,
Object msg,
ByteBuf out) |
flush, isEncodablenewOutboundBufferafterAdd, afterRemove, beforeAdd, beforeRemove, bind, close, connect, deregister, disconnect, exceptionCaught, userEventTriggeredclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitbind, close, connect, deregister, disconnectafterAdd, afterRemove, beforeAdd, beforeRemove, exceptionCaught, userEventTriggeredpublic MarshallingEncoder(MarshallerProvider provider)
provider - the MarshallerProvider to usepublic void encode(ChannelHandlerContext ctx, Object msg, ByteBuf out) throws Exception
encode in class MessageToByteEncoder<Object>ExceptionCopyright © 2008-2012 The Netty Project. All Rights Reserved.