Class CompatibleMarshallingEncoder
java.lang.Object
org.jboss.netty.handler.codec.oneone.OneToOneEncoder
org.jboss.netty.handler.codec.marshalling.CompatibleMarshallingEncoder
- All Implemented Interfaces:
ChannelDownstreamHandler
,ChannelHandler
OneToOneEncoder
implementation which uses JBoss Marshalling to marshal
an Object.
See JBoss Marshalling website
for more informations
Use MarshallingEncoder
if possible.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.jboss.netty.channel.ChannelHandler
ChannelHandler.Sharable
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected 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
-
Field Details
-
provider
-
-
Constructor Details
-
CompatibleMarshallingEncoder
Create a new instance of theCompatibleMarshallingEncoder
- Parameters:
provider
- theMarshallerProvider
to use to get theMarshaller
for aChannel
-
-
Method Details
-
encode
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
-