Home / Function/ maxTableCapacity() — netty Function Reference

maxTableCapacity() — netty Function Reference

Architecture documentation for the maxTableCapacity() function in QpackEncoderDynamicTable.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  7bee1cc8_fb10_4557_d83c_ebacd2e5f371["maxTableCapacity()"]
  4f2fd884_2460_757f_867b_2f1f2c79f9b9["QpackEncoderDynamicTable"]
  7bee1cc8_fb10_4557_d83c_ebacd2e5f371 -->|defined in| 4f2fd884_2460_757f_867b_2f1f2c79f9b9
  e29b2f16_6e8d_3b7b_3ee5_787cd2f6ec2d["validateCapacity()"]
  7bee1cc8_fb10_4557_d83c_ebacd2e5f371 -->|calls| e29b2f16_6e8d_3b7b_3ee5_787cd2f6ec2d
  style 7bee1cc8_fb10_4557_d83c_ebacd2e5f371 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/main/java/io/netty/handler/codec/http3/QpackEncoderDynamicTable.java lines 272–278

    void maxTableCapacity(long capacity) throws QpackException {
        validateCapacity(capacity);
        if (this.maxTableCapacity >= 0) {
            throw CAPACITY_ALREADY_SET;
        }
        this.maxTableCapacity = capacity;
    }

Domain

Subdomains

Frequently Asked Questions

What does maxTableCapacity() do?
maxTableCapacity() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackEncoderDynamicTable.java.
Where is maxTableCapacity() defined?
maxTableCapacity() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackEncoderDynamicTable.java at line 272.
What does maxTableCapacity() call?
maxTableCapacity() calls 1 function(s): validateCapacity.

Analyze Your Own Codebase

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

Try Supermodel Free