Uses of Class
org.jboss.netty.handler.codec.frame.FrameDecoder
-
Packages that use FrameDecoder Package Description org.jboss.netty.example.factorial org.jboss.netty.example.portunification org.jboss.netty.handler.codec.frame Extensible decoder and its common implementations which deal with the packet fragmentation and reassembly issue found in a stream-based transport such as TCP/IP.org.jboss.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.org.jboss.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.org.jboss.netty.handler.codec.marshalling Decoder and Encoder which uses JBoss Marshalling.org.jboss.netty.handler.codec.protobuf Encoder and decoder which transform a Google Protocol BuffersMessageinto aChannelBufferand vice versa.org.jboss.netty.handler.codec.replay Specialized variation ofFrameDecoderwhich enables implementation of a non-blocking decoder in the blocking I/O paradigm.org.jboss.netty.handler.codec.rtsp An RTSP extension based on the HTTP codec.org.jboss.netty.handler.codec.serialization Encoder, decoder and their compatibility stream implementations which transform aSerializableobject into a byte buffer and vice versa.org.jboss.netty.handler.codec.socks Encoder, decoder and their related message types for Socks.org.jboss.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.org.jboss.netty.handler.ssl SSL · TLS implementation based onSSLEngine -
-
Uses of FrameDecoder in org.jboss.netty.example.factorial
Subclasses of FrameDecoder in org.jboss.netty.example.factorial Modifier and Type Class Description classBigIntegerDecoderDecodes the binary representation of aBigIntegerprepended with a magic number ('F' or 0x46) and a 32-bit integer length prefix into aBigIntegerinstance. -
Uses of FrameDecoder in org.jboss.netty.example.portunification
Subclasses of FrameDecoder in org.jboss.netty.example.portunification Modifier and Type Class Description classPortUnificationServerHandlerManipulates the current pipeline dynamically to switch protocols or enable SSL or GZIP. -
Uses of FrameDecoder in org.jboss.netty.handler.codec.frame
Subclasses of FrameDecoder in org.jboss.netty.handler.codec.frame Modifier and Type Class Description classDelimiterBasedFrameDecoderA decoder that splits the receivedChannelBuffers by one or more delimiters.classFixedLengthFrameDecoderA decoder that splits the receivedChannelBuffers by the fixed number of bytes.classLengthFieldBasedFrameDecoderA decoder that splits the receivedChannelBuffers dynamically by the value of the length field in the message.classLineBasedFrameDecoderA decoder that splits the receivedChannelBuffers on line endings. -
Uses of FrameDecoder in org.jboss.netty.handler.codec.http
Subclasses of FrameDecoder in org.jboss.netty.handler.codec.http Modifier and Type Class Description private classHttpClientCodec.DecoderclassHttpMessageDecoderclassHttpRequestDecoderclassHttpResponseDecoder -
Uses of FrameDecoder in org.jboss.netty.handler.codec.http.websocketx
Subclasses of FrameDecoder in org.jboss.netty.handler.codec.http.websocketx Modifier and Type Class Description classWebSocket00FrameDecoderDecodesChannelBuffers intoWebSocketFrames.classWebSocket07FrameDecoderDecodes a web socket frame from wire protocol version 7 format.classWebSocket08FrameDecoderDecodes a web socket frame from wire protocol version 8 format.classWebSocket13FrameDecoderDecodes a web socket frame from wire protocol version 13 format. -
Uses of FrameDecoder in org.jboss.netty.handler.codec.marshalling
Subclasses of FrameDecoder in org.jboss.netty.handler.codec.marshalling Modifier and Type Class Description classCompatibleMarshallingDecoderclassMarshallingDecoderDecoder which MUST be used withMarshallingEncoder. -
Uses of FrameDecoder in org.jboss.netty.handler.codec.protobuf
Subclasses of FrameDecoder in org.jboss.netty.handler.codec.protobuf Modifier and Type Class Description classProtobufVarint32FrameDecoderA decoder that splits the receivedChannelBuffers dynamically by the value of the Google Protocol Buffers Base 128 Varints integer length field in the message. -
Uses of FrameDecoder in org.jboss.netty.handler.codec.replay
Subclasses of FrameDecoder in org.jboss.netty.handler.codec.replay Modifier and Type Class Description classReplayingDecoder<T extends java.lang.Enum<T>>A specialized variation ofFrameDecoderwhich enables implementation of a non-blocking decoder in the blocking I/O paradigm. -
Uses of FrameDecoder in org.jboss.netty.handler.codec.rtsp
Subclasses of FrameDecoder in org.jboss.netty.handler.codec.rtsp Modifier and Type Class Description classRtspMessageDecoderDecodesChannelBuffers into RTSP messages represented inHttpMessages.classRtspRequestDecoderDecodesChannelBuffers into RTSP requests represented inHttpRequests.classRtspResponseDecoderDecodesChannelBuffers into RTSP responses represented inHttpResponses. -
Uses of FrameDecoder in org.jboss.netty.handler.codec.serialization
Subclasses of FrameDecoder in org.jboss.netty.handler.codec.serialization Modifier and Type Class Description classObjectDecoderA decoder which deserializes the receivedChannelBuffers into Java objects. -
Uses of FrameDecoder in org.jboss.netty.handler.codec.socks
Subclasses of FrameDecoder in org.jboss.netty.handler.codec.socks Modifier and Type Class Description classSocksAuthRequestDecoderDecodesChannelBuffers intoSocksAuthRequest.classSocksAuthResponseDecoderDecodesChannelBuffers intoSocksAuthResponse.classSocksCmdRequestDecoderDecodesChannelBuffers intoSocksCmdRequest.classSocksCmdResponseDecoderDecodesChannelBuffers intoSocksCmdResponse.classSocksInitRequestDecoderDecodesChannelBuffers intoSocksInitRequest.classSocksInitResponseDecoderDecodesChannelBuffers intoSocksInitResponse. -
Uses of FrameDecoder in org.jboss.netty.handler.codec.spdy
Subclasses of FrameDecoder in org.jboss.netty.handler.codec.spdy Modifier and Type Class Description classSpdyFrameCodecAChannelHandlerthat encodes and decodes SPDY Frames. -
Uses of FrameDecoder in org.jboss.netty.handler.ssl
Subclasses of FrameDecoder in org.jboss.netty.handler.ssl Modifier and Type Class Description classSslHandler
-