Uses of Class
io.netty.handler.codec.ByteToMessageDecoder
-
Packages that use ByteToMessageDecoder Package Description io.netty.handler.codec 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.io.netty.handler.codec.compression io.netty.handler.codec.dns DNS codec.io.netty.handler.codec.haproxy Decodes an HAProxy proxy protocol headerio.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.codec.json JSON specific codecs.io.netty.handler.codec.marshalling Decoder and Encoder which uses JBoss Marshalling.io.netty.handler.codec.memcache Common superset of ascii and binary classes.io.netty.handler.codec.memcache.binary Implementations and Interfaces for the Memcache Binary protocol.io.netty.handler.codec.mqtt Encoder, decoder and different Message Types for MQTT.io.netty.handler.codec.protobuf Encoder and decoder which transform a Google Protocol BuffersMessageandMessageNanointo aByteBufand vice versa.io.netty.handler.codec.redis Encoder, decoder for Redis.io.netty.handler.codec.rtsp An RTSP extension based on the HTTP codec.io.netty.handler.codec.serialization Encoder, decoder and their compatibility stream implementations which transform aSerializableobject into a byte buffer and vice versa.io.netty.handler.codec.smtp SMTP codec.io.netty.handler.codec.socks Encoder, decoder and their related message types for Socks.io.netty.handler.codec.socksx Encoder, decoder and their related message types for SOCKS protocol.io.netty.handler.codec.socksx.v4 Encoder, decoder and their related message types for SOCKSv4 protocol.io.netty.handler.codec.socksx.v5 Encoder, decoder and their related message types for SOCKSv5 protocol.io.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.io.netty.handler.codec.stomp STOMP codecio.netty.handler.codec.xml XML codec provides asynchronous and non-blocking XML parser based on the Aalto XML parser.io.netty.handler.ssl SSL · TLS implementation based onSSLEngine -
-
Uses of ByteToMessageDecoder in io.netty.handler.codec
Subclasses of ByteToMessageDecoder in io.netty.handler.codec Modifier and Type Class Description classDelimiterBasedFrameDecoderA decoder that splits the receivedByteBufs by one or more delimiters.classFixedLengthFrameDecoderA decoder that splits the receivedByteBufs by the fixed number of bytes.classLengthFieldBasedFrameDecoderA decoder that splits the receivedByteBufs dynamically by the value of the length field in the message.classLineBasedFrameDecoderA decoder that splits the receivedByteBufs on line endings.classReplayingDecoder<S>A specialized variation ofByteToMessageDecoderwhich enables implementation of a non-blocking decoder in the blocking I/O paradigm. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.compression
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.compression Modifier and Type Class Description classBrotliDecoderDecompresses aByteBufencoded with the brotli format.classBzip2DecoderUncompresses aByteBufencoded with the Bzip2 format.classFastLzFrameDecoderUncompresses aByteBufencoded byFastLzFrameEncoderusing the FastLZ algorithm.classJdkZlibDecoderDecompress aByteBufusing the inflate algorithm.classJZlibDecoderclassLz4FrameDecoderUncompresses aByteBufencoded with the LZ4 format.classLzfDecoderUncompresses aByteBufencoded with the LZF format.classSnappyFramedDecoderDeprecated.UseSnappyFrameDecoderinstead.classSnappyFrameDecoderUncompresses aByteBufencoded with the Snappy framing format.classZlibDecoderDecompresses aByteBufusing the deflate algorithm.classZstdDecoderDecompresses a compressed blockByteBufusing the Zstandard algorithm. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.dns
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.dns Modifier and Type Class Description classTcpDnsQueryDecoderclassTcpDnsResponseDecoder -
Uses of ByteToMessageDecoder in io.netty.handler.codec.haproxy
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.haproxy Modifier and Type Class Description classHAProxyMessageDecoderDecodes an HAProxy proxy protocol header -
Uses of ByteToMessageDecoder in io.netty.handler.codec.http
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.http Modifier and Type Class Description classHttpObjectDecoderclassHttpRequestDecoderclassHttpResponseDecoder -
Uses of ByteToMessageDecoder in io.netty.handler.codec.http.websocketx
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.http.websocketx Modifier and Type Class Description classWebSocket00FrameDecoderDecodesByteBufs 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 ByteToMessageDecoder in io.netty.handler.codec.http2
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.http2 Modifier and Type Class Description classCleartextHttp2ServerUpgradeHandlerPerforming cleartext upgrade, by h2c HTTP upgrade or Prior Knowledge.classHttp2ConnectionHandlerProvides the default implementation for processing inbound frame events and delegates to aHttp2FrameListenerclassHttp2FrameCodecAn HTTP/2 handler that maps HTTP/2 frames toHttp2Frameobjects and vice versa.classHttp2MultiplexCodecDeprecated.useHttp2FrameCodecBuildertogether withHttp2MultiplexHandler.classHttpToHttp2ConnectionHandlerTranslates HTTP/1.x object writes into HTTP/2 frames. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.json
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.json Modifier and Type Class Description classJsonObjectDecoderSplits a byte stream of JSON objects and arrays into individual objects/arrays and passes them up theChannelPipeline. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.marshalling
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.marshalling Modifier and Type Class Description classCompatibleMarshallingDecoderclassMarshallingDecoderDecoder which MUST be used withMarshallingEncoder. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.memcache
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.memcache Modifier and Type Class Description classAbstractMemcacheObjectDecoderAbstract super class for both ascii and binary decoders. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.memcache.binary
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.memcache.binary Modifier and Type Class Description classAbstractBinaryMemcacheDecoder<M extends BinaryMemcacheMessage>Decoder for bothBinaryMemcacheRequestandBinaryMemcacheResponse.classBinaryMemcacheRequestDecoderThe decoder part which takes care of decoding the request-specific headers.classBinaryMemcacheResponseDecoderThe decoder which takes care of decoding the response headers. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.mqtt
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.mqtt Modifier and Type Class Description classMqttDecoder -
Uses of ByteToMessageDecoder in io.netty.handler.codec.protobuf
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.protobuf Modifier and Type Class Description classProtobufVarint32FrameDecoderA decoder that splits the receivedByteBufs dynamically by the value of the Google Protocol Buffers Base 128 Varints integer length field in the message. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.redis
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.redis Modifier and Type Class Description classRedisDecoderDecodes the Redis protocol intoRedisMessageobjects following RESP (REdis Serialization Protocol). -
Uses of ByteToMessageDecoder in io.netty.handler.codec.rtsp
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.rtsp Modifier and Type Class Description classRtspDecoderDecodesByteBufs into RTSP messages represented inHttpMessages.classRtspObjectDecoderDeprecated.UseRtspDecoderinstead.classRtspRequestDecoderDeprecated.UseRtspDecoderdirectly insteadclassRtspResponseDecoderDeprecated.UseRtspDecoderdirectly instead -
Uses of ByteToMessageDecoder in io.netty.handler.codec.serialization
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.serialization Modifier and Type Class Description classObjectDecoderDeprecated.This class has been deprecated with no replacement, because serialization can be a security liability -
Uses of ByteToMessageDecoder in io.netty.handler.codec.smtp
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.smtp Modifier and Type Class Description classSmtpResponseDecoderDecoder for SMTP responses. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.socks
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.socks Modifier and Type Class Description classSocksAuthRequestDecoderDecodesByteBufs intoSocksAuthRequest.classSocksAuthResponseDecoderDecodesByteBufs intoSocksAuthResponse.classSocksCmdRequestDecoderDecodesByteBufs intoSocksCmdRequest.classSocksCmdResponseDecoderDecodesByteBufs intoSocksCmdResponse.classSocksInitRequestDecoderDecodesByteBufs intoSocksInitRequest.classSocksInitResponseDecoderDecodesByteBufs intoSocksInitResponse. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.socksx
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.socksx Modifier and Type Class Description classSocksPortUnificationServerHandlerDetects the version of the current SOCKS connection and initializes the pipeline withSocks4ServerDecoderorSocks5InitialRequestDecoder. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.socksx.v4
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.socksx.v4 Modifier and Type Class Description classSocks4ClientDecoderDecodes a singleSocks4CommandResponsefrom the inboundByteBufs.classSocks4ServerDecoderDecodes a singleSocks4CommandRequestfrom the inboundByteBufs. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.socksx.v5
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.socksx.v5 Modifier and Type Class Description classSocks5CommandRequestDecoderDecodes a singleSocks5CommandRequestfrom the inboundByteBufs.classSocks5CommandResponseDecoderDecodes a singleSocks5CommandResponsefrom the inboundByteBufs.classSocks5InitialRequestDecoderDecodes a singleSocks5InitialRequestfrom the inboundByteBufs.classSocks5InitialResponseDecoderDecodes a singleSocks5InitialResponsefrom the inboundByteBufs.classSocks5PasswordAuthRequestDecoderDecodes a singleSocks5PasswordAuthRequestfrom the inboundByteBufs.classSocks5PasswordAuthResponseDecoderDecodes a singleSocks5PasswordAuthResponsefrom the inboundByteBufs.classSocks5PrivateAuthRequestDecoderDecodes a singleSocks5PrivateAuthRequestfrom the inboundByteBufs.classSocks5PrivateAuthResponseDecoderDecodes a singleSocks5PrivateAuthResponsefrom the inboundByteBufs. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.spdy
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.spdy Modifier and Type Class Description classSpdyFrameCodecAChannelHandlerthat encodes and decodes SPDY Frames. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.stomp
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.stomp Modifier and Type Class Description classStompSubframeDecoder -
Uses of ByteToMessageDecoder in io.netty.handler.codec.xml
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.xml Modifier and Type Class Description classXmlDecoderAsync XML decoder based on Aalto XML parser.classXmlFrameDecoderA frame decoder for single separate XML based message streams. -
Uses of ByteToMessageDecoder in io.netty.handler.ssl
Subclasses of ByteToMessageDecoder in io.netty.handler.ssl Modifier and Type Class Description classAbstractSniHandler<T>Enables SNI (Server Name Indication) extension for server side SSL.classOptionalSslHandlerOptionalSslHandleris a utility decoder to support both SSL and non-SSL handlers based on the first message received.classSniHandlerEnables SNI (Server Name Indication) extension for server side SSL.classSslClientHelloHandler<T>ByteToMessageDecoderwhich allows to be notified once a fullClientHellowas received.classSslHandler
-