Uses of Class
io.netty.handler.codec.ByteToMessageDecoder
-
Packages that use ByteToMessageDecoder 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.compression io.netty.handler.codec.json JSON specific codecs.io.netty.handler.codec.marshalling Decoder and Encoder which uses JBoss Marshalling.io.netty.handler.codec.protobuf Encoder and decoder which transform a Google Protocol BuffersMessageandMessageNanointo aByteBufand vice versa.io.netty.handler.codec.serialization Encoder, decoder and their compatibility stream implementations which transform aSerializableobject into a byte buffer and vice versa.io.netty.handler.codec.xml Xml specific codecs. -
-
Uses of ByteToMessageDecoder in io.netty.handler.codec
Subclasses of ByteToMessageDecoder in io.netty.handler.codec Modifier and Type Class Description classDelimiterBasedFrameDecoderA decoder that splits the receivedByteBufs by one or more delimiters.classFixedLengthFrameDecoderA decoder that splits the receivedByteBufs by the fixed number of bytes.classLengthFieldBasedFrameDecoderA decoder that splits the receivedByteBufs dynamically by the value of the length field in the message.classLineBasedFrameDecoderA decoder that splits the receivedByteBufs on line endings.classReplayingDecoder<S>A 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.compression Modifier and Type Class Description classBrotliDecoderDecompresses aByteBufencoded with the brotli format.classBzip2DecoderUncompresses aByteBufencoded with the Bzip2 format.classFastLzFrameDecoderUncompresses aByteBufencoded byFastLzFrameEncoderusing the FastLZ algorithm.classJdkZlibDecoderDecompress aByteBufusing the inflate algorithm.classJZlibDecoderclassLz4FrameDecoderUncompresses aByteBufencoded with the LZ4 format.classLzfDecoderUncompresses aByteBufencoded with the LZF format.classSnappyFramedDecoderDeprecated.UseSnappyFrameDecoderinstead.classSnappyFrameDecoderUncompresses aByteBufencoded with the Snappy framing format.classZlibDecoderDecompresses aByteBufusing the deflate algorithm.classZstdDecoderDecompresses a compressed blockByteBufusing the Zstandard algorithm. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.json
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.json Modifier and Type Class Description classJsonObjectDecoderSplits 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 Modifier and Type Class Description classCompatibleMarshallingDecoderclassMarshallingDecoderDecoder which MUST be used withMarshallingEncoder. -
Uses of ByteToMessageDecoder in io.netty.handler.codec.protobuf
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.protobuf Modifier and Type Class Description classProtobufVarint32FrameDecoderA 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.serialization
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.serialization Modifier and Type Class Description classObjectDecoderDeprecated.This class has been deprecated with no replacement, because serialization can be a security liability -
Uses of ByteToMessageDecoder in io.netty.handler.codec.xml
Subclasses of ByteToMessageDecoder in io.netty.handler.codec.xml Modifier and Type Class Description classXmlFrameDecoderA frame decoder for single separate XML based message streams.
-