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 BuffersMessage
andMessageNano
into aByteBuf
and 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 aSerializable
object 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 class
DelimiterBasedFrameDecoder
A decoder that splits the receivedByteBuf
s by one or more delimiters.class
FixedLengthFrameDecoder
A decoder that splits the receivedByteBuf
s by the fixed number of bytes.class
LengthFieldBasedFrameDecoder
A decoder that splits the receivedByteBuf
s dynamically by the value of the length field in the message.class
LineBasedFrameDecoder
A decoder that splits the receivedByteBuf
s on line endings.class
ReplayingDecoder<S>
A specialized variation ofByteToMessageDecoder
which 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 class
BrotliDecoder
Decompresses aByteBuf
encoded with the brotli format.class
Bzip2Decoder
Uncompresses aByteBuf
encoded with the Bzip2 format.class
FastLzFrameDecoder
Uncompresses aByteBuf
encoded byFastLzFrameEncoder
using the FastLZ algorithm.class
JdkZlibDecoder
Decompress aByteBuf
using the inflate algorithm.class
JZlibDecoder
class
Lz4FrameDecoder
Uncompresses aByteBuf
encoded with the LZ4 format.class
LzfDecoder
Uncompresses aByteBuf
encoded with the LZF format.class
SnappyFramedDecoder
Deprecated.UseSnappyFrameDecoder
instead.class
SnappyFrameDecoder
Uncompresses aByteBuf
encoded with the Snappy framing format.class
ZlibDecoder
Decompresses aByteBuf
using the deflate algorithm.class
ZstdDecoder
Decompresses a compressed blockByteBuf
using 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 class
TcpDnsQueryDecoder
class
TcpDnsResponseDecoder
-
Uses of ByteToMessageDecoder in io.netty.handler.codec.haproxy
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.haproxy Modifier and Type Class Description class
HAProxyMessageDecoder
Decodes 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 class
HttpObjectDecoder
class
HttpRequestDecoder
class
HttpResponseDecoder
-
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 class
WebSocket00FrameDecoder
DecodesByteBuf
s intoWebSocketFrame
s.class
WebSocket07FrameDecoder
Decodes a web socket frame from wire protocol version 7 format.class
WebSocket08FrameDecoder
Decodes a web socket frame from wire protocol version 8 format.class
WebSocket13FrameDecoder
Decodes 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 class
CleartextHttp2ServerUpgradeHandler
Performing cleartext upgrade, by h2c HTTP upgrade or Prior Knowledge.class
Http2ConnectionHandler
Provides the default implementation for processing inbound frame events and delegates to aHttp2FrameListener
class
Http2FrameCodec
This API is very immature. The Http2Connection-based API is currently preferred over this API.class
Http2MultiplexCodec
Deprecated.useHttp2FrameCodecBuilder
together withHttp2MultiplexHandler
.class
HttpToHttp2ConnectionHandler
Translates 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 class
JsonObjectDecoder
Splits 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 class
CompatibleMarshallingDecoder
class
MarshallingDecoder
Decoder 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 class
AbstractMemcacheObjectDecoder
Abstract 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 class
AbstractBinaryMemcacheDecoder<M extends BinaryMemcacheMessage>
Decoder for bothBinaryMemcacheRequest
andBinaryMemcacheResponse
.class
BinaryMemcacheRequestDecoder
The decoder part which takes care of decoding the request-specific headers.class
BinaryMemcacheResponseDecoder
The 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 class
MqttDecoder
-
Uses of ByteToMessageDecoder in io.netty.handler.codec.protobuf
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.protobuf Modifier and Type Class Description class
ProtobufVarint32FrameDecoder
A decoder that splits the receivedByteBuf
s 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 class
RedisDecoder
Decodes the Redis protocol intoRedisMessage
objects 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 class
RtspDecoder
DecodesByteBuf
s into RTSP messages represented inHttpMessage
s.class
RtspObjectDecoder
Deprecated.UseRtspDecoder
instead.class
RtspRequestDecoder
Deprecated.UseRtspDecoder
directly insteadclass
RtspResponseDecoder
Deprecated.UseRtspDecoder
directly instead -
Uses of ByteToMessageDecoder in io.netty.handler.codec.serialization
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.serialization Modifier and Type Class Description class
ObjectDecoder
Deprecated.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 class
SmtpResponseDecoder
Decoder 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 class
SocksAuthRequestDecoder
DecodesByteBuf
s intoSocksAuthRequest
.class
SocksAuthResponseDecoder
DecodesByteBuf
s intoSocksAuthResponse
.class
SocksCmdRequestDecoder
DecodesByteBuf
s intoSocksCmdRequest
.class
SocksCmdResponseDecoder
DecodesByteBuf
s intoSocksCmdResponse
.class
SocksInitRequestDecoder
DecodesByteBuf
s intoSocksInitRequest
.class
SocksInitResponseDecoder
DecodesByteBuf
s intoSocksInitResponse
. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.socksx
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.socksx Modifier and Type Class Description class
SocksPortUnificationServerHandler
Detects the version of the current SOCKS connection and initializes the pipeline withSocks4ServerDecoder
orSocks5InitialRequestDecoder
. -
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 class
Socks4ClientDecoder
Decodes a singleSocks4CommandResponse
from the inboundByteBuf
s.class
Socks4ServerDecoder
Decodes a singleSocks4CommandRequest
from the inboundByteBuf
s. -
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 class
Socks5CommandRequestDecoder
Decodes a singleSocks5CommandRequest
from the inboundByteBuf
s.class
Socks5CommandResponseDecoder
Decodes a singleSocks5CommandResponse
from the inboundByteBuf
s.class
Socks5InitialRequestDecoder
Decodes a singleSocks5InitialRequest
from the inboundByteBuf
s.class
Socks5InitialResponseDecoder
Decodes a singleSocks5InitialResponse
from the inboundByteBuf
s.class
Socks5PasswordAuthRequestDecoder
Decodes a singleSocks5PasswordAuthRequest
from the inboundByteBuf
s.class
Socks5PasswordAuthResponseDecoder
Decodes a singleSocks5PasswordAuthResponse
from the inboundByteBuf
s. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.spdy
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.spdy Modifier and Type Class Description class
SpdyFrameCodec
AChannelHandler
that 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 class
StompSubframeDecoder
-
Uses of ByteToMessageDecoder in io.netty.handler.codec.xml
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.xml Modifier and Type Class Description class
XmlDecoder
Async XML decoder based on Aalto XML parser.class
XmlFrameDecoder
A 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 class
AbstractSniHandler<T>
Enables SNI (Server Name Indication) extension for server side SSL.class
OptionalSslHandler
OptionalSslHandler
is a utility decoder to support both SSL and non-SSL handlers based on the first message received.class
SniHandler
Enables SNI (Server Name Indication) extension for server side SSL.class
SslClientHelloHandler<T>
ByteToMessageDecoder
which allows to be notified once a fullClientHello
was received.class
SslHandler
-