Uses of Class
io.netty5.handler.codec.MessageToMessageDecoder
-
Packages that use MessageToMessageDecoder 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.ByteBufand vice versa.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.string Encoder and decoder which transform aStringinto aio.netty5.buffer.ByteBufand vice versa. -
-
Uses of MessageToMessageDecoder in io.netty5.handler.codec
Subclasses of MessageToMessageDecoder in io.netty5.handler.codec Modifier and Type Class Description classDatagramPacketDecoderA decoder that decodes the content of the receivedDatagramPacketusing the specifiedBufferdecoder.classMessageAggregator<I,S,C extends AutoCloseable,A extends AutoCloseable>An abstractChannelHandlerthat aggregates a series of message objects into a single aggregated message.Constructors in io.netty5.handler.codec with parameters of type MessageToMessageDecoder Constructor Description DatagramPacketDecoder(MessageToMessageDecoder<Buffer> decoder)Create aDatagramPacketdecoder using the specifiedBufferdecoder. -
Uses of MessageToMessageDecoder in io.netty5.handler.codec.base64
Subclasses of MessageToMessageDecoder in io.netty5.handler.codec.base64 Modifier and Type Class Description classBase64Decoder -
Uses of MessageToMessageDecoder in io.netty5.handler.codec.bytes
Subclasses of MessageToMessageDecoder in io.netty5.handler.codec.bytes Modifier and Type Class Description classByteArrayDecoderDecodes a receivedBufferinto an array of bytes. -
Uses of MessageToMessageDecoder in io.netty5.handler.codec.dns
Subclasses of MessageToMessageDecoder in io.netty5.handler.codec.dns Modifier and Type Class Description classDatagramDnsQueryDecoderDecodes aDatagramPacketinto aDatagramDnsQuery.classDatagramDnsResponseDecoderDecodes aDatagramPacketinto aDatagramDnsResponse. -
Uses of MessageToMessageDecoder in io.netty5.handler.codec.http
Subclasses of MessageToMessageDecoder in io.netty5.handler.codec.http Modifier and Type Class Description classHttpClientUpgradeHandler<C extends HttpContent<C>>Client-side handler for handling an HTTP upgrade handshake to another protocol.classHttpContentDecoderDecodes the content of the receivedHttpRequestandHttpContent.classHttpContentDecompressorclassHttpObjectAggregator<C extends HttpContent<C>>AChannelHandlerthat aggregates anHttpMessageand its followingHttpContents into a singleFullHttpRequestorFullHttpResponse(depending on if it used to handle requests or responses) with no followingHttpContents.classHttpServerUpgradeHandler<C extends HttpContent<C>>A server-side handler that receives HTTP requests and optionally performs a protocol switch if the requested protocol is supported. -
Uses of MessageToMessageDecoder in io.netty5.handler.codec.http.websocketx
Subclasses of MessageToMessageDecoder in io.netty5.handler.codec.http.websocketx Modifier and Type Class Description classWebSocketClientProtocolHandlerThis handler does all the heavy lifting for you to run a websocket client.classWebSocketFrameAggregatorHandler that aggregate fragmented WebSocketFrame's.classWebSocketServerProtocolHandlerThis handler does all the heavy lifting for you to run a websocket server. -
Uses of MessageToMessageDecoder in io.netty5.handler.codec.http.websocketx.extensions
Subclasses of MessageToMessageDecoder in io.netty5.handler.codec.http.websocketx.extensions Modifier and Type Class Description classWebSocketExtensionDecoderConvenient class for io.netty5.handler.codec.http.websocketx.extensions.WebSocketExtension decoder. -
Uses of MessageToMessageDecoder in io.netty5.handler.codec.string
Subclasses of MessageToMessageDecoder in io.netty5.handler.codec.string Modifier and Type Class Description classStringDecoder
-