Class MarshallingEncoder
- java.lang.Object
-
- org.jboss.netty.handler.codec.oneone.OneToOneEncoder
-
- org.jboss.netty.handler.codec.marshalling.MarshallingEncoder
-
- All Implemented Interfaces:
ChannelDownstreamHandler
,ChannelHandler
@Sharable public class MarshallingEncoder extends OneToOneEncoder
OneToOneEncoder
implementation which uses JBoss Marshalling to marshal an Object. Be aware that thisOneToOneEncoder
is not compatible with an other client that just use JBoss Marshalling as it includes the size of everyObject
that gets serialized in front of theObject
itself. Use this withMarshallingDecoder
See JBoss Marshalling website for more informations
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jboss.netty.channel.ChannelHandler
ChannelHandler.Sharable
-
-
Constructor Summary
Constructors Constructor Description MarshallingEncoder(MarshallerProvider provider)
Creates a new encoder with the estimated length of 512 bytes.MarshallingEncoder(MarshallerProvider provider, int estimatedLength)
Creates a new encoder.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Object
encode(ChannelHandlerContext ctx, Channel channel, Object msg)
Transforms the specified message into another message and return the transformed message.-
Methods inherited from class org.jboss.netty.handler.codec.oneone.OneToOneEncoder
doEncode, handleDownstream
-
-
-
-
Constructor Detail
-
MarshallingEncoder
public MarshallingEncoder(MarshallerProvider provider)
Creates a new encoder with the estimated length of 512 bytes.- Parameters:
provider
- theMarshallerProvider
to use
-
MarshallingEncoder
public MarshallingEncoder(MarshallerProvider provider, int estimatedLength)
Creates a new encoder.- Parameters:
provider
- theMarshallerProvider
to useestimatedLength
- the estimated byte length of the serialized form of an object. If the length of the serialized form exceeds this value, the internal buffer will be expanded automatically at the cost of memory bandwidth. If this value is too big, it will also waste memory bandwidth. To avoid unnecessary memory copy or allocation cost, please specify the properly estimated value.
-
-
Method Detail
-
encode
protected Object encode(ChannelHandlerContext ctx, Channel channel, Object msg) throws Exception
Description copied from class:OneToOneEncoder
Transforms the specified message into another message and return the transformed message. Note that you can not returnnull
, unlike you can inOneToOneDecoder.decode(ChannelHandlerContext, Channel, Object)
; you must return something, at leastChannelBuffers.EMPTY_BUFFER
.- Specified by:
encode
in classOneToOneEncoder
- Throws:
Exception
-
-