Uses of Class
io.netty5.handler.codec.ByteToMessageDecoder
-
Packages that use ByteToMessageDecoder Package Description io.netty5.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.netty5.handler.codec.compression io.netty5.handler.codec.dns DNS codec.io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty5.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty5.handler.codec.rtsp An RTSP extension based on the HTTP codec.io.netty5.handler.ssl -
-
Uses of ByteToMessageDecoder in io.netty5.handler.codec
Subclasses of ByteToMessageDecoder in io.netty5.handler.codec Modifier and Type Class Description class
DelimiterBasedFrameDecoder
A decoder that splits the receivedBuffer
s by one or more delimiters.class
FixedLengthFrameDecoder
A decoder that splits the receivedBuffer
s by the fixed number of bytes.class
LengthFieldBasedFrameDecoder
A decoder that splits the receivedBuffer
s dynamically by the value of the length field in the message.class
LineBasedFrameDecoder
A decoder that splits the receivedBuffer
s on line endings. -
Uses of ByteToMessageDecoder in io.netty5.handler.codec.compression
Subclasses of ByteToMessageDecoder in io.netty5.handler.codec.compression Modifier and Type Class Description class
DecompressionHandler
-
Uses of ByteToMessageDecoder in io.netty5.handler.codec.dns
Subclasses of ByteToMessageDecoder in io.netty5.handler.codec.dns Modifier and Type Class Description class
TcpDnsQueryDecoder
class
TcpDnsResponseDecoder
-
Uses of ByteToMessageDecoder in io.netty5.handler.codec.http
Subclasses of ByteToMessageDecoder in io.netty5.handler.codec.http Modifier and Type Class Description class
HttpObjectDecoder
class
HttpRequestDecoder
class
HttpResponseDecoder
-
Uses of ByteToMessageDecoder in io.netty5.handler.codec.http.websocketx
Subclasses of ByteToMessageDecoder in io.netty5.handler.codec.http.websocketx Modifier and Type Class Description class
WebSocket13FrameDecoder
Decodes a web socket frame from wire protocol version 13 format. -
Uses of ByteToMessageDecoder in io.netty5.handler.codec.http2
Subclasses of ByteToMessageDecoder in io.netty5.handler.codec.http2 Modifier and Type Class Description class
CleartextHttp2ServerUpgradeHandler
Performing clear-text 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
HttpToHttp2ConnectionHandler
Translates HTTP/1.x object writes into HTTP/2 frames. -
Uses of ByteToMessageDecoder in io.netty5.handler.codec.rtsp
Subclasses of ByteToMessageDecoder in io.netty5.handler.codec.rtsp Modifier and Type Class Description class
RtspDecoder
Decodesio.netty5.buffer.ByteBuf
s into RTSP messages represented inHttpMessage
s. -
Uses of ByteToMessageDecoder in io.netty5.handler.ssl
Subclasses of ByteToMessageDecoder in io.netty5.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
-