Uses of Class
org.jboss.netty.handler.codec.compression.ZlibWrapper
-
Packages that use ZlibWrapper Package Description org.jboss.netty.handler.codec.compression Encoder and decoder which compresses and decompressesChannelBuffers in a compression format such as zlib and gzip.org.jboss.netty.handler.codec.http Encoder, decoder and their related message types for HTTP. -
-
Uses of ZlibWrapper in org.jboss.netty.handler.codec.compression
Fields in org.jboss.netty.handler.codec.compression declared as ZlibWrapper Modifier and Type Field Description private ZlibWrapperJdkZlibEncoder. wrapperMethods in org.jboss.netty.handler.codec.compression that return ZlibWrapper Modifier and Type Method Description static ZlibWrapperZlibWrapper. 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 org.jboss.netty.handler.codec.compression with parameters of type ZlibWrapper Modifier and Type Method Description (package private) static intZlibUtil. convertWrapperType(ZlibWrapper wrapper)(package private) static intZlibUtil. convertWrapperType(ZlibWrapper wrapper, int windowBits)(package private) static intZlibUtil. wrapperOverhead(ZlibWrapper wrapper)Constructors in org.jboss.netty.handler.codec.compression with parameters of type ZlibWrapper Constructor Description 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 specifiedcompressionLeveland the specified wrapper.ZlibDecoder(ZlibWrapper wrapper)Creates a new instance with the specified wrapper.ZlibEncoder(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.ZlibEncoder(ZlibWrapper wrapper, int compressionLevel)Creates a new zlib encoder with the specifiedcompressionLevel, default window bits (15), default memory level (8), and the specified wrapper.ZlibEncoder(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 org.jboss.netty.handler.codec.http
Methods in org.jboss.netty.handler.codec.http that return ZlibWrapper Modifier and Type Method Description private static ZlibWrapperHttpContentCompressor. determineWrapper(java.lang.String acceptEncoding)
-