Home / Class/ ZstdConstants Class — netty Architecture

ZstdConstants Class — netty Architecture

Architecture documentation for the ZstdConstants class in ZstdConstants.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  2f470d12_ee9c_152b_a9e1_361e03624b7c["ZstdConstants"]
  64908225_ca0a_4c4a_2e54_9c4dc02d84ff["ZstdConstants.java"]
  2f470d12_ee9c_152b_a9e1_361e03624b7c -->|defined in| 64908225_ca0a_4c4a_2e54_9c4dc02d84ff
  3633ee7b_d00c_5426_0e2c_94628bb3f969["ZstdConstants()"]
  2f470d12_ee9c_152b_a9e1_361e03624b7c -->|method| 3633ee7b_d00c_5426_0e2c_94628bb3f969

Relationship Graph

Source Code

codec-compression/src/main/java/io/netty/handler/codec/compression/ZstdConstants.java lines 20–47

final class ZstdConstants {

    /**
     * Default compression level
     */
    static final int DEFAULT_COMPRESSION_LEVEL = Zstd.defaultCompressionLevel();

    /**
     * Min compression level
     */
    static final int MIN_COMPRESSION_LEVEL = Zstd.minCompressionLevel();

    /**
     * Max compression level
     */
    static final int MAX_COMPRESSION_LEVEL = Zstd.maxCompressionLevel();

    /**
     * Max encode size
     */
    static final int DEFAULT_MAX_ENCODE_SIZE = Integer.MAX_VALUE;
    /**
     * Default block size
     */
    static final int DEFAULT_BLOCK_SIZE = 1 << 16;  // 64 KB

    private ZstdConstants() { }
}

Frequently Asked Questions

What is the ZstdConstants class?
ZstdConstants is a class in the netty codebase, defined in codec-compression/src/main/java/io/netty/handler/codec/compression/ZstdConstants.java.
Where is ZstdConstants defined?
ZstdConstants is defined in codec-compression/src/main/java/io/netty/handler/codec/compression/ZstdConstants.java at line 20.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free