Class HttpClientCodec.Encoder
- java.lang.Object
-
- org.jboss.netty.handler.codec.oneone.OneToOneEncoder
-
- org.jboss.netty.handler.codec.http.HttpMessageEncoder
-
- org.jboss.netty.handler.codec.http.HttpRequestEncoder
-
- org.jboss.netty.handler.codec.http.HttpClientCodec.Encoder
-
- All Implemented Interfaces:
ChannelDownstreamHandler
,ChannelHandler
- Enclosing class:
- HttpClientCodec
private final class HttpClientCodec.Encoder extends HttpRequestEncoder
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jboss.netty.channel.ChannelHandler
ChannelHandler.Sharable
-
-
Constructor Summary
Constructors Constructor Description Encoder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Object
encode(ChannelHandlerContext ctx, Channel channel, java.lang.Object msg)
Transforms the specified message into another message and return the transformed message.-
Methods inherited from class org.jboss.netty.handler.codec.http.HttpRequestEncoder
encodeInitialLine
-
Methods inherited from class org.jboss.netty.handler.codec.http.HttpMessageEncoder
encodeAscii
-
Methods inherited from class org.jboss.netty.handler.codec.oneone.OneToOneEncoder
doEncode, handleDownstream
-
-
-
-
Method Detail
-
encode
protected java.lang.Object encode(ChannelHandlerContext ctx, Channel channel, java.lang.Object msg) throws java.lang.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
.- Overrides:
encode
in classHttpMessageEncoder
- Throws:
java.lang.Exception
-
-