Uses of Enum
io.netty.handler.codec.compression.ZlibWrapper
Packages that use ZlibWrapper
Package
Description
Encoder, decoder and their related message types for HTTP.
-
Uses of ZlibWrapper in io.netty.handler.codec.compression
Subclasses with type arguments of type ZlibWrapper in io.netty.handler.codec.compressionModifier and TypeClassDescriptionenumThe container file formats that wrap the stream compressed by the DEFLATE algorithm.Methods in io.netty.handler.codec.compression that return ZlibWrapperModifier and TypeMethodDescriptionstatic ZlibWrapperReturns the enum constant of this type with the specified name.static ZlibWrapper[]ZlibWrapper.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty.handler.codec.compression with parameters of type ZlibWrapperModifier and TypeMethodDescriptionstatic ZlibDecoderZlibCodecFactory.newZlibDecoder(ZlibWrapper wrapper) Deprecated.static ZlibDecoderZlibCodecFactory.newZlibDecoder(ZlibWrapper wrapper, int maxAllocation) Create a new decoder instance with the specified wrapper and maximum buffer allocation.static ZlibEncoderZlibCodecFactory.newZlibEncoder(ZlibWrapper wrapper) static ZlibEncoderZlibCodecFactory.newZlibEncoder(ZlibWrapper wrapper, int compressionLevel) static ZlibEncoderZlibCodecFactory.newZlibEncoder(ZlibWrapper wrapper, int compressionLevel, int windowBits, int memLevel) Constructors in io.netty.handler.codec.compression with parameters of type ZlibWrapperModifierConstructorDescriptionJdkZlibDecoder(ZlibWrapper wrapper) Deprecated.JdkZlibDecoder(ZlibWrapper wrapper, boolean decompressConcatenated) Deprecated.JdkZlibDecoder(ZlibWrapper wrapper, boolean decompressConcatenated, int maxAllocation) JdkZlibDecoder(ZlibWrapper wrapper, int maxAllocation) Creates a new instance with the specified wrapper and maximum buffer allocation.JdkZlibEncoder(ZlibWrapper wrapper) Creates a new zlib encoder with a compression level of (6) and the specified wrapper.JdkZlibEncoder(ZlibWrapper wrapper, int compressionLevel) Creates a new zlib encoder with the specifiedcompressionLeveland the specified wrapper.JZlibDecoder(ZlibWrapper wrapper) Deprecated.JZlibDecoder(ZlibWrapper wrapper, int maxAllocation) Creates a new instance with the specified wrapper and maximum buffer allocation.JZlibEncoder(ZlibWrapper wrapper) Creates a new zlib encoder with the default compression level (6), default window bits (15), default memory level (8), and the specified wrapper.JZlibEncoder(ZlibWrapper wrapper, int compressionLevel) Creates a new zlib encoder with the specifiedcompressionLevel, default window bits (15), default memory level (8), and the specified wrapper.JZlibEncoder(ZlibWrapper wrapper, int compressionLevel, int windowBits, int memLevel) Creates a new zlib encoder with the specifiedcompressionLevel, the specifiedwindowBits, the specifiedmemLevel, and the specified wrapper. -
Uses of ZlibWrapper in io.netty.handler.codec.http
Methods in io.netty.handler.codec.http that return ZlibWrapperModifier and TypeMethodDescriptionprotected ZlibWrapperHttpContentCompressor.determineWrapper(String acceptEncoding) Deprecated.
ZlibCodecFactory.newZlibDecoder(ZlibWrapper, int).