encodeIndexedStaticTable() — netty Function Reference
Architecture documentation for the encodeIndexedStaticTable() function in QpackEncoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD aecc0b51_b4bf_12ee_de58_fe48c890656f["encodeIndexedStaticTable()"] 9e578dbc_12be_4439_554b_24e265961ea5["QpackEncoder"] aecc0b51_b4bf_12ee_de58_fe48c890656f -->|defined in| 9e578dbc_12be_4439_554b_24e265961ea5 4290254a_d002_4407_68f0_95045618c5ff["encodeHeader()"] 4290254a_d002_4407_68f0_95045618c5ff -->|calls| aecc0b51_b4bf_12ee_de58_fe48c890656f style aecc0b51_b4bf_12ee_de58_fe48c890656f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/main/java/io/netty/handler/codec/http3/QpackEncoder.java lines 403–410
private void encodeIndexedStaticTable(ByteBuf out, int index) {
// https://www.rfc-editor.org/rfc/rfc9204.html#name-indexed-field-line
// 0 1 2 3 4 5 6 7
// +---+---+---+---+---+---+---+---+
// | 1 | T | Index (6+) |
// +---+---+-----------------------+
encodePrefixedInteger(out, (byte) 0b1100_0000, 6, index);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does encodeIndexedStaticTable() do?
encodeIndexedStaticTable() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackEncoder.java.
Where is encodeIndexedStaticTable() defined?
encodeIndexedStaticTable() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackEncoder.java at line 403.
What calls encodeIndexedStaticTable()?
encodeIndexedStaticTable() is called by 1 function(s): encodeHeader.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free