Class RtspMessageEncoder
java.lang.Object
org.jboss.netty.handler.codec.oneone.OneToOneEncoder
org.jboss.netty.handler.codec.http.HttpMessageEncoder
org.jboss.netty.handler.codec.rtsp.RtspMessageEncoder
- All Implemented Interfaces:
ChannelDownstreamHandler,ChannelHandler
- Direct Known Subclasses:
RtspRequestEncoder,RtspResponseEncoder
Encodes an RTSP message represented in
HttpMessage into
a ChannelBuffer.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.jboss.netty.channel.ChannelHandler
ChannelHandler.Sharable -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected Objectencode(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.http.HttpMessageEncoder
encodeAscii, encodeInitialLineMethods inherited from class org.jboss.netty.handler.codec.oneone.OneToOneEncoder
doEncode, handleDownstream
-
Constructor Details
-
RtspMessageEncoder
protected RtspMessageEncoder()Creates a new instance.
-
-
Method Details
-
encode
Description copied from class:OneToOneEncoderTransforms 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:
encodein classHttpMessageEncoder- Throws:
Exception
-