Uses of Class
io.netty5.handler.codec.compression.ZlibWrapper
-
Packages that use ZlibWrapper Package Description io.netty5.handler.codec.compression io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP. -
-
Uses of ZlibWrapper in io.netty5.handler.codec.compression
Methods in io.netty5.handler.codec.compression that return ZlibWrapper Modifier and Type Method Description static ZlibWrapper
ZlibWrapper. valueOf(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.netty5.handler.codec.compression with parameters of type ZlibWrapper Modifier and Type Method Description static Supplier<ZlibCompressor>
ZlibCompressor. newFactory(ZlibWrapper wrapper)
Creates a zlib compressor factory with the default compression level (6
) and the specified wrapper.static Supplier<ZlibCompressor>
ZlibCompressor. newFactory(ZlibWrapper wrapper, int compressionLevel)
Creates a zlib compressor factory with the specifiedcompressionLevel
and the specified wrapper.static Supplier<ZlibDecompressor>
ZlibDecompressor. newFactory(ZlibWrapper wrapper)
Creates zlib decompressor factory with the specified wrapper.static Supplier<ZlibDecompressor>
ZlibDecompressor. newFactory(ZlibWrapper wrapper, boolean decompressConcatenated)
static Supplier<ZlibDecompressor>
ZlibDecompressor. newFactory(ZlibWrapper wrapper, boolean decompressConcatenated, int maxAllocation)
static Supplier<ZlibDecompressor>
ZlibDecompressor. newFactory(ZlibWrapper wrapper, int maxAllocation)
Creates zlib decompressor factory with the specified wrapper and maximum buffer allocation.static ChannelHandler
ZlibCodecFactory. newZlibDecoder(ZlibWrapper wrapper)
static ChannelHandler
ZlibCodecFactory. newZlibEncoder(ZlibWrapper wrapper)
static ChannelHandler
ZlibCodecFactory. newZlibEncoder(ZlibWrapper wrapper, int compressionLevel)
static ChannelHandler
ZlibCodecFactory. newZlibEncoder(ZlibWrapper wrapper, int compressionLevel, int windowBits, int memLevel)
-
Uses of ZlibWrapper in io.netty5.handler.codec.http
Methods in io.netty5.handler.codec.http that return ZlibWrapper Modifier and Type Method Description protected ZlibWrapper
HttpContentCompressor. determineWrapper(String acceptEncoding)
Deprecated.
-