Uses of Class
io.netty.handler.codec.ByteToMessageDecoder
Packages that use ByteToMessageDecoder
Package
Description
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.
DNS codec.
Decodes an HAProxy proxy protocol header
Encoder, decoder and their related message types for HTTP.
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
Handlers for sending and receiving HTTP/2 frames.
JSON specific codecs.
Decoder and Encoder which uses JBoss Marshalling.
Common superset of ascii and binary classes.
Implementations and Interfaces for the Memcache Binary protocol.
Encoder, decoder and different Message Types for MQTT.
Encoder and decoder which transform a
Google Protocol Buffers
Message and MessageNano into a
ByteBuf and vice versa.Encoder, decoder for Redis.
An RTSP
extension based on the HTTP codec.
Encoder, decoder and their compatibility stream implementations which
transform a
Serializable object into a byte buffer and
vice versa.SMTP codec.
Encoder, decoder and their related message types for Socks.
Encoder, decoder and their related message types for SOCKS protocol.
Encoder, decoder and their related message types for SOCKSv4 protocol.
Encoder, decoder and their related message types for SOCKSv5 protocol.
Encoder, decoder, session handler and their related message types for the SPDY protocol.
STOMP codec
XML codec provides asynchronous and non-blocking XML parser based on the
Aalto XML parser.
-
Uses of ByteToMessageDecoder in io.netty.handler.codec
Subclasses of ByteToMessageDecoder in io.netty.handler.codecModifier and TypeClassDescriptionclassA decoder that splits the receivedByteBufs by one or more delimiters.classA decoder that splits the receivedByteBufs by the fixed number of bytes.classA decoder that splits the receivedByteBufs dynamically by the value of the length field in the message.classA decoder that splits the receivedByteBufs on line endings.classA specialized variation ofByteToMessageDecoderwhich enables implementation of a non-blocking decoder in the blocking I/O paradigm. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.compression
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.compressionModifier and TypeClassDescriptionfinal classDecompresses aByteBufencoded with the brotli format.classUncompresses aByteBufencoded with the Bzip2 format.classUncompresses aByteBufencoded byFastLzFrameEncoderusing the FastLZ algorithm.classDecompress aByteBufusing the inflate algorithm.classclassUncompresses aByteBufencoded with the LZ4 format.classUncompresses aByteBufencoded with the LZF format.classDeprecated.classUncompresses aByteBufencoded with the Snappy framing format.classDecompresses aByteBufusing the deflate algorithm.final classDecompresses a compressed blockByteBufusing the Zstandard algorithm. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.dns
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.dnsModifier and TypeClassDescriptionfinal classfinal class -
Uses of ByteToMessageDecoder in io.netty.handler.codec.haproxy
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.haproxyModifier and TypeClassDescriptionclassDecodes an HAProxy proxy protocol header -
Uses of ByteToMessageDecoder in io.netty.handler.codec.http
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.httpModifier and TypeClassDescriptionclassclassclass -
Uses of ByteToMessageDecoder in io.netty.handler.codec.http.websocketx
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.http.websocketxModifier and TypeClassDescriptionclassDecodesByteBufs intoWebSocketFrames.classDecodes a web socket frame from wire protocol version 7 format.classDecodes a web socket frame from wire protocol version 8 format.classDecodes a web socket frame from wire protocol version 13 format. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.http2
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.http2Modifier and TypeClassDescriptionfinal classPerforming cleartext upgrade, by h2c HTTP upgrade or Prior Knowledge.classProvides the default implementation for processing inbound frame events and delegates to aHttp2FrameListenerclassAn HTTP/2 handler that maps HTTP/2 frames toHttp2Frameobjects and vice versa.classDeprecated.useHttp2FrameCodecBuildertogether withHttp2MultiplexHandler.classTranslates HTTP/1.x object writes into HTTP/2 frames. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.json
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.jsonModifier and TypeClassDescriptionclassSplits a byte stream of JSON objects and arrays into individual objects/arrays and passes them up theChannelPipeline. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.marshalling
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.marshalling -
Uses of ByteToMessageDecoder in io.netty.handler.codec.memcache
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.memcacheModifier and TypeClassDescriptionclassAbstract super class for both ascii and binary decoders. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.memcache.binary
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.memcache.binaryModifier and TypeClassDescriptionclassDecoder for bothBinaryMemcacheRequestandBinaryMemcacheResponse.classThe decoder part which takes care of decoding the request-specific headers.classThe decoder which takes care of decoding the response headers. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.mqtt
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.mqttModifier and TypeClassDescriptionfinal class -
Uses of ByteToMessageDecoder in io.netty.handler.codec.protobuf
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.protobufModifier and TypeClassDescriptionclassA decoder that splits the receivedByteBufs dynamically by the value of the Google Protocol Buffers Base 128 Varints integer length field in the message. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.redis
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.redisModifier and TypeClassDescriptionfinal classDecodes the Redis protocol intoRedisMessageobjects following RESP (REdis Serialization Protocol). -
Uses of ByteToMessageDecoder in io.netty.handler.codec.rtsp
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.rtspModifier and TypeClassDescriptionclassDecodesByteBufs into RTSP messages represented inHttpMessages.classDeprecated.UseRtspDecoderinstead.classDeprecated.UseRtspDecoderdirectly insteadclassDeprecated.UseRtspDecoderdirectly instead -
Uses of ByteToMessageDecoder in io.netty.handler.codec.serialization
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.serializationModifier and TypeClassDescriptionclassDeprecated.This class has been deprecated with no replacement, because serialization can be a security liability -
Uses of ByteToMessageDecoder in io.netty.handler.codec.smtp
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.smtp -
Uses of ByteToMessageDecoder in io.netty.handler.codec.socks
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.socksModifier and TypeClassDescriptionclassDecodesByteBufs intoSocksAuthRequest.classDecodesByteBufs intoSocksAuthResponse.classDecodesByteBufs intoSocksCmdRequest.classDecodesByteBufs intoSocksCmdResponse.classDecodesByteBufs intoSocksInitRequest.classDecodesByteBufs intoSocksInitResponse. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.socksx
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.socksxModifier and TypeClassDescriptionclassDetects the version of the current SOCKS connection and initializes the pipeline withSocks4ServerDecoderorSocks5InitialRequestDecoder. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.socksx.v4
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.socksx.v4Modifier and TypeClassDescriptionclassDecodes a singleSocks4CommandResponsefrom the inboundByteBufs.classDecodes a singleSocks4CommandRequestfrom the inboundByteBufs. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.socksx.v5
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.socksx.v5Modifier and TypeClassDescriptionclassDecodes a singleSocks5CommandRequestfrom the inboundByteBufs.classDecodes a singleSocks5CommandResponsefrom the inboundByteBufs.classDecodes a singleSocks5InitialRequestfrom the inboundByteBufs.classDecodes a singleSocks5InitialResponsefrom the inboundByteBufs.classDecodes a singleSocks5PasswordAuthRequestfrom the inboundByteBufs.classDecodes a singleSocks5PasswordAuthResponsefrom the inboundByteBufs.final classDecodes a singleSocks5PrivateAuthRequestfrom the inboundByteBufs.final classDecodes a singleSocks5PrivateAuthResponsefrom the inboundByteBufs. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.spdy
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.spdy -
Uses of ByteToMessageDecoder in io.netty.handler.codec.stomp
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.stompModifier and TypeClassDescriptionclass -
Uses of ByteToMessageDecoder in io.netty.handler.codec.xml
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.xmlModifier and TypeClassDescriptionclassAsync XML decoder based on Aalto XML parser.classA frame decoder for single separate XML based message streams. -
Uses of ByteToMessageDecoder in io.netty.handler.ssl
Subclasses of ByteToMessageDecoder in io.netty.handler.sslModifier and TypeClassDescriptionclassEnables SNI (Server Name Indication) extension for server side SSL.classOptionalSslHandleris a utility decoder to support both SSL and non-SSL handlers based on the first message received.classEnables SNI (Server Name Indication) extension for server side SSL.classByteToMessageDecoderwhich allows to be notified once a fullClientHellowas received.class
SnappyFrameDecoderinstead.