Uses of Package
io.netty5.handler.codec
-
Packages that use io.netty5.handler.codec 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.base64 io.netty5.handler.codec.bytes Encoder and decoder which transform an array of bytes into aio.netty5.buffer.ByteBuf
and vice versa.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.http.websocketx.extensions Encoder, decoder, handshakers to handle WebSocket Extensions.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.codec.string Encoder and decoder which transform aString
into aio.netty5.buffer.ByteBuf
and vice versa.io.netty5.handler.ssl -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec Class Description ByteToMessageDecoder ChannelHandler
which decodes bytes in a stream-like fashion from oneBuffer
to an other Message type.ByteToMessageDecoder.Cumulator CumulateBuffer
s.CharSequenceValueConverter Converts to/from native types, generalObject
, andCharSequence
s.CodecException AnException
which is thrown by a codec.DecoderException AnCodecException
which is thrown by a decoder.DecoderResult DefaultHeaders Default implementation ofHeaders
;DefaultHeaders.HeaderEntry DefaultHeaders.NameValidator Headers Common interface forHeaders
which represents a mapping of key to value.MessageToMessageDecoder ChannelHandler
which decodes from one message to another message.MessageToMessageEncoder ChannelHandler
which encodes from one message to another message For example here is an implementation which decodes anInteger
to anString
.ProtocolDetectionResult Result of detecting a protocol.ProtocolDetectionState The state of the current detection.UnsupportedValueConverter UnsupportedOperationException
will be thrown from allValueConverter
methods.ValueConverter Converts to/from a generic object to the type. -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec.base64 Class Description MessageToMessageDecoder ChannelHandler
which decodes from one message to another message.MessageToMessageEncoder ChannelHandler
which encodes from one message to another message For example here is an implementation which decodes anInteger
to anString
. -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec.bytes Class Description MessageToMessageDecoder ChannelHandler
which decodes from one message to another message.MessageToMessageEncoder ChannelHandler
which encodes from one message to another message For example here is an implementation which decodes anInteger
to anString
. -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec.compression Class Description ByteToMessageDecoder ChannelHandler
which decodes bytes in a stream-like fashion from oneBuffer
to an other Message type.CodecException AnException
which is thrown by a codec.DecoderException AnCodecException
which is thrown by a decoder.EncoderException AnCodecException
which is thrown by an encoder. -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec.dns Class Description ByteToMessageDecoder ChannelHandler
which decodes bytes in a stream-like fashion from oneBuffer
to an other Message type.LengthFieldBasedFrameDecoder A decoder that splits the receivedBuffer
s dynamically by the value of the length field in the message.MessageToByteEncoder ChannelHandler
which encodes message in a stream-like fashion from one message to aBuffer
.MessageToMessageDecoder ChannelHandler
which decodes from one message to another message.MessageToMessageEncoder ChannelHandler
which encodes from one message to another message For example here is an implementation which decodes anInteger
to anString
. -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec.http Class Description ByteToMessageDecoder ChannelHandler
which decodes bytes in a stream-like fashion from oneBuffer
to an other Message type.CodecException AnException
which is thrown by a codec.DecoderException AnCodecException
which is thrown by a decoder.DecoderResult DecoderResultProvider Provides the accessor methods for theDecoderResult
property of a decoded message.DefaultHeaders Default implementation ofHeaders
;DefaultHeaders.NameValidator MessageAggregator An abstractChannelHandler
that aggregates a series of message objects into a single aggregated message.MessageToMessageCodec A Codec for on-the-fly encoding/decoding of message.MessageToMessageDecoder ChannelHandler
which decodes from one message to another message.MessageToMessageEncoder ChannelHandler
which encodes from one message to another message For example here is an implementation which decodes anInteger
to anString
.TooLongFrameException AnDecoderException
which is thrown when the length of the frame decoded is greater than the allowed maximum. -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec.http.websocketx Class Description ByteToMessageDecoder ChannelHandler
which decodes bytes in a stream-like fashion from oneBuffer
to an other Message type.CodecException AnException
which is thrown by a codec.CorruptedFrameException AnDecoderException
which is thrown when the received frame data could not be decoded by an inbound handler.DecoderException AnCodecException
which is thrown by a decoder.MessageAggregator An abstractChannelHandler
that aggregates a series of message objects into a single aggregated message.MessageToMessageDecoder ChannelHandler
which decodes from one message to another message.MessageToMessageEncoder ChannelHandler
which encodes from one message to another message For example here is an implementation which decodes anInteger
to anString
.ProtocolEvent An application-level event propagated via anChannelPipeline
, such as a TLS or WebSocket handshake event. -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec.http.websocketx.extensions Class Description MessageToMessageDecoder ChannelHandler
which decodes from one message to another message.MessageToMessageEncoder ChannelHandler
which encodes from one message to another message For example here is an implementation which decodes anInteger
to anString
. -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec.http2 Class Description ByteToMessageDecoder ChannelHandler
which decodes bytes in a stream-like fashion from oneBuffer
to an other Message type.DefaultHeaders Default implementation ofHeaders
;DefaultHeaders.HeaderEntry EmptyHeaders Headers Common interface forHeaders
which represents a mapping of key to value.MessageToMessageCodec A Codec for on-the-fly encoding/decoding of message.ValueConverter Converts to/from a generic object to the type. -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec.rtsp Class Description ByteToMessageDecoder ChannelHandler
which decodes bytes in a stream-like fashion from oneBuffer
to an other Message type.MessageToMessageEncoder ChannelHandler
which encodes from one message to another message For example here is an implementation which decodes anInteger
to anString
. -
Classes in io.netty5.handler.codec used by io.netty5.handler.codec.string Class Description MessageToMessageDecoder ChannelHandler
which decodes from one message to another message.MessageToMessageEncoder ChannelHandler
which encodes from one message to another message For example here is an implementation which decodes anInteger
to anString
. -
Classes in io.netty5.handler.codec used by io.netty5.handler.ssl Class Description ByteToMessageDecoder ChannelHandler
which decodes bytes in a stream-like fashion from oneBuffer
to an other Message type.ProtocolEvent An application-level event propagated via anChannelPipeline
, such as a TLS or WebSocket handshake event.