ZlibWrapper Type — netty Architecture
Architecture documentation for the ZlibWrapper type/interface in ZlibWrapper.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 89d4cbfb_03ba_e7c5_2356_1e5a4ec0c08c["ZlibWrapper"] 3d6d6f5c_21f1_879f_e5aa_88cdc166a5b6["ZlibWrapper.java"] 89d4cbfb_03ba_e7c5_2356_1e5a4ec0c08c -->|defined in| 3d6d6f5c_21f1_879f_e5aa_88cdc166a5b6 style 89d4cbfb_03ba_e7c5_2356_1e5a4ec0c08c fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-compression/src/main/java/io/netty/handler/codec/compression/ZlibWrapper.java lines 22–40
public enum ZlibWrapper {
/**
* The ZLIB wrapper as specified in <a href="https://tools.ietf.org/html/rfc1950">RFC 1950</a>.
*/
ZLIB,
/**
* The GZIP wrapper as specified in <a href="https://tools.ietf.org/html/rfc1952">RFC 1952</a>.
*/
GZIP,
/**
* Raw DEFLATE stream only (no header and no footer).
*/
NONE,
/**
* Try {@link #ZLIB} first and then {@link #NONE} if the first attempt fails.
* Please note that you can specify this wrapper type only when decompressing.
*/
ZLIB_OR_NONE
}
Source
Frequently Asked Questions
What is the ZlibWrapper type?
ZlibWrapper is a type/interface in the netty codebase, defined in codec-compression/src/main/java/io/netty/handler/codec/compression/ZlibWrapper.java.
Where is ZlibWrapper defined?
ZlibWrapper is defined in codec-compression/src/main/java/io/netty/handler/codec/compression/ZlibWrapper.java at line 22.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free