Uses of Class
io.netty.handler.codec.compression.ZlibWrapper
-
Packages that use ZlibWrapper Package Description io.netty.handler.codec.compression io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of ZlibWrapper in io.netty.handler.codec.compression
Fields in io.netty.handler.codec.compression declared as ZlibWrapper Modifier and Type Field Description private ZlibWrapper
JdkZlibEncoder. wrapper
Methods in io.netty.handler.codec.compression that return ZlibWrapper Modifier and Type Method Description static ZlibWrapper
ZlibWrapper. valueOf(java.lang.String name)
Returns 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 ZlibWrapper Modifier and Type Method Description (package private) static com.jcraft.jzlib.JZlib.WrapperType
ZlibUtil. convertWrapperType(ZlibWrapper wrapper)
static ZlibDecoder
ZlibCodecFactory. newZlibDecoder(ZlibWrapper wrapper)
static ZlibEncoder
ZlibCodecFactory. newZlibEncoder(ZlibWrapper wrapper)
static ZlibEncoder
ZlibCodecFactory. newZlibEncoder(ZlibWrapper wrapper, int compressionLevel)
static ZlibEncoder
ZlibCodecFactory. newZlibEncoder(ZlibWrapper wrapper, int compressionLevel, int windowBits, int memLevel)
(package private) static int
ZlibUtil. wrapperOverhead(ZlibWrapper wrapper)
Constructors in io.netty.handler.codec.compression with parameters of type ZlibWrapper Constructor Description JdkZlibDecoder(ZlibWrapper wrapper)
Creates a new instance with the specified wrapper.JdkZlibDecoder(ZlibWrapper wrapper, boolean decompressConcatenated)
JdkZlibDecoder(ZlibWrapper wrapper, boolean decompressConcatenated, int maxAllocation)
JdkZlibDecoder(ZlibWrapper wrapper, byte[] dictionary, 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 the default compression level (6
) and the specified wrapper.JdkZlibEncoder(ZlibWrapper wrapper, int compressionLevel)
Creates a new zlib encoder with the specifiedcompressionLevel
and the specified wrapper.JZlibDecoder(ZlibWrapper wrapper)
Creates a new instance with the specified wrapper.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 ZlibWrapper Modifier and Type Method Description protected ZlibWrapper
HttpContentCompressor. determineWrapper(java.lang.String acceptEncoding)
Deprecated. -
Uses of ZlibWrapper in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 with parameters of type ZlibWrapper Modifier and Type Method Description private EmbeddedChannel
CompressorHttp2ConnectionEncoder. newCompressionChannel(ChannelHandlerContext ctx, ZlibWrapper wrapper)
Generate a new instance of anEmbeddedChannel
capable of compressing data
-