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 aByteBufand 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 BuffersMessageandMessageNanointo aByteBufand 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 aStringinto aByteBufand vice versa. -
-
Uses of MessageToMessageDecoder in io.netty.handler.codec
Subclasses of MessageToMessageDecoder in io.netty.handler.codec Modifier and Type Class Description classDatagramPacketDecoderA decoder that decodes the content of the receivedDatagramPacketusing the specifiedByteBufdecoder.classMessageAggregator<I,S,C extends ByteBufHolder,O extends ByteBufHolder>An abstractChannelHandlerthat 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 aDatagramPacketdecoder using the specifiedByteBufdecoder. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.base64
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.base64 Modifier and Type Class Description classBase64Decoder -
Uses of MessageToMessageDecoder in io.netty.handler.codec.bytes
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.bytes Modifier and Type Class Description classByteArrayDecoderDecodes a receivedByteBufinto 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 classDatagramDnsQueryDecoderDecodes aDatagramPacketinto aDatagramDnsQuery.classDatagramDnsResponseDecoderDecodes aDatagramPacketinto aDatagramDnsResponse. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.http
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.http Modifier and Type Class Description classHttpClientUpgradeHandlerClient-side handler for handling an HTTP upgrade handshake to another protocol.classHttpContentDecoderDecodes the content of the receivedHttpRequestandHttpContent.classHttpContentDecompressorclassHttpObjectAggregatorAChannelHandlerthat aggregates anHttpMessageand its followingHttpContents into a singleFullHttpRequestorFullHttpResponse(depending on if it used to handle requests or responses) with no followingHttpContents.classHttpServerUpgradeHandlerA 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 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.netty.handler.codec.http.websocketx.extensions
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.http.websocketx.extensions Modifier and Type Class Description classWebSocketExtensionDecoderConvenient 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 classAbstractMemcacheObjectAggregator<H extends MemcacheMessage>AChannelHandlerthat aggregates anMemcacheMessageand its followingMemcacheContents into a singleMemcacheMessagewith no followingMemcacheContents. -
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 classBinaryMemcacheObjectAggregatorAn 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 classProtobufDecoderclassProtobufDecoderNano -
Uses of MessageToMessageDecoder in io.netty.handler.codec.redis
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.redis Modifier and Type Class Description classRedisArrayAggregatorAggregatesRedisMessageparts intoArrayRedisMessage.classRedisBulkStringAggregatorAChannelHandlerthat aggregates anBulkStringHeaderRedisMessageand its followingBulkStringRedisContents into a singleFullBulkStringRedisMessagewith no followingBulkStringRedisContents. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.sctp
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.sctp Modifier and Type Class Description classSctpInboundByteStreamHandlerA ChannelHandler which receivesSctpMessages which belong to a application protocol form a specific SCTP Stream and decode it asByteBuf.classSctpMessageCompletionHandlerMessageToMessageDecoderwhich will take care of handle fragmentedSctpMessages, so only completeSctpMessages will be forwarded to the nextChannelInboundHandler.classSctpMessageToMessageDecoder -
Uses of MessageToMessageDecoder in io.netty.handler.codec.spdy
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.spdy Modifier and Type Class Description classSpdyHttpDecoderDecodesSpdySynStreamFrames,SpdySynReplyFrames, andSpdyDataFrames intoFullHttpRequests andFullHttpResponses. -
Uses of MessageToMessageDecoder in io.netty.handler.codec.stomp
Subclasses of MessageToMessageDecoder in io.netty.handler.codec.stomp Modifier and Type Class Description classStompSubframeAggregatorAChannelHandlerthat aggregates anStompHeadersSubframeand its followingStompContentSubframes 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 classStringDecoderDecodes a receivedByteBufinto aString.
-