Uses of Class
io.netty.handler.codec.MessageToMessageDecoder
-
Packages that use MessageToMessageDecoder 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.base64 io.netty.handler.codec.bytes Encoder and decoder which transform an array of bytes into aByteBuf
and vice versa.io.netty.handler.codec.dns DNS codec.io.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.http.websocketx.extensions Encoder, decoder, handshakers to handle WebSocket Extensions.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.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.sctp Decoder and encoders to manage message completion and multi-streaming codec in SCTP/IP.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.string Encoder and decoder which transform aString
into aByteBuf
and vice versa. -
-
Uses of MessageToMessageDecoder in io.netty.handler.codec
Subclasses of MessageToMessageDecoder in io.netty.handler.codec Modifier and Type Class Description class
DatagramPacketDecoder
A decoder that decodes the content of the receivedDatagramPacket
using the specifiedByteBuf
decoder.class
MessageAggregator<I,S,C extends ByteBufHolder,O extends ByteBufHolder>
An abstractChannelHandler
that aggregates a series of message objects into a single aggregated message.Constructors in io.netty.handler.codec with parameters of type MessageToMessageDecoder Constructor Description DatagramPacketDecoder(MessageToMessageDecoder<ByteBuf> decoder)
Create aDatagramPacket
decoder using the specifiedByteBuf
decoder. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.base64
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.base64 Modifier and Type Class Description class
Base64Decoder
-
Uses of MessageToMessageDecoder in io.netty.handler.codec.bytes
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.bytes Modifier and Type Class Description class
ByteArrayDecoder
Decodes a receivedByteBuf
into an array of bytes. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.dns
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.dns Modifier and Type Class Description class
DatagramDnsQueryDecoder
Decodes aDatagramPacket
into aDatagramDnsQuery
.class
DatagramDnsResponseDecoder
Decodes aDatagramPacket
into aDatagramDnsResponse
. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.http
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.http Modifier and Type Class Description class
HttpClientUpgradeHandler
Client-side handler for handling an HTTP upgrade handshake to another protocol.class
HttpContentDecoder
Decodes the content of the receivedHttpRequest
andHttpContent
.class
HttpContentDecompressor
class
HttpObjectAggregator
AChannelHandler
that aggregates anHttpMessage
and its followingHttpContent
s into a singleFullHttpRequest
orFullHttpResponse
(depending on if it used to handle requests or responses) with no followingHttpContent
s.class
HttpServerUpgradeHandler
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.netty.handler.codec.http.websocketx
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.http.websocketx Modifier and Type Class Description class
WebSocketClientProtocolHandler
This handler does all the heavy lifting for you to run a websocket client.class
WebSocketFrameAggregator
Handler that aggregate fragmented WebSocketFrame's.class
WebSocketServerProtocolHandler
This handler does all the heavy lifting for you to run a websocket server. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.http.websocketx.extensions
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.http.websocketx.extensions Modifier and Type Class Description class
WebSocketExtensionDecoder
Convenient class for io.netty.handler.codec.http.websocketx.extensions.WebSocketExtension decoder. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.memcache
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.memcache Modifier and Type Class Description class
AbstractMemcacheObjectAggregator<H extends MemcacheMessage>
AChannelHandler
that aggregates anMemcacheMessage
and its followingMemcacheContent
s into a singleMemcacheMessage
with no followingMemcacheContent
s. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.memcache.binary
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.memcache.binary Modifier and Type Class Description class
BinaryMemcacheObjectAggregator
An object aggregator for the memcache binary protocol. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.protobuf
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.protobuf Modifier and Type Class Description class
ProtobufDecoder
class
ProtobufDecoderNano
-
Uses of MessageToMessageDecoder in io.netty.handler.codec.redis
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.redis Modifier and Type Class Description class
RedisArrayAggregator
AggregatesRedisMessage
parts intoArrayRedisMessage
.class
RedisBulkStringAggregator
AChannelHandler
that aggregates anBulkStringHeaderRedisMessage
and its followingBulkStringRedisContent
s into a singleFullBulkStringRedisMessage
with no followingBulkStringRedisContent
s. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.sctp
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.sctp Modifier and Type Class Description class
SctpInboundByteStreamHandler
A ChannelHandler which receivesSctpMessage
s which belong to a application protocol form a specific SCTP Stream and decode it asByteBuf
.class
SctpMessageCompletionHandler
MessageToMessageDecoder
which will take care of handle fragmentedSctpMessage
s, so only completeSctpMessage
s will be forwarded to the nextChannelInboundHandler
.class
SctpMessageToMessageDecoder
-
Uses of MessageToMessageDecoder in io.netty.handler.codec.spdy
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.spdy Modifier and Type Class Description class
SpdyHttpDecoder
DecodesSpdySynStreamFrame
s,SpdySynReplyFrame
s, andSpdyDataFrame
s intoFullHttpRequest
s andFullHttpResponse
s. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.stomp
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.stomp Modifier and Type Class Description class
StompSubframeAggregator
AChannelHandler
that aggregates anStompHeadersSubframe
and its followingStompContentSubframe
s into a singleStompFrame
. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.string
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.string Modifier and Type Class Description class
StringDecoder
Decodes a receivedByteBuf
into aString
.
-