end() — netty Function Reference
Architecture documentation for the end() function in HpackHuffmanEncoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 8fa543c3_f5ed_cdc5_74aa_f71e4b2ae200["end()"] c1abb897_cee8_0666_478f_51ac2a844235["EncodeProcessor"] 8fa543c3_f5ed_cdc5_74aa_f71e4b2ae200 -->|defined in| c1abb897_cee8_0666_478f_51ac2a844235 1d7e7b35_132b_b895_c2f2_b87999561c33["encode()"] 1d7e7b35_132b_b895_c2f2_b87999561c33 -->|calls| 8fa543c3_f5ed_cdc5_74aa_f71e4b2ae200 style 8fa543c3_f5ed_cdc5_74aa_f71e4b2ae200 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/HpackHuffmanEncoder.java lines 162–174
void end() {
try {
if (n > 0) {
current <<= 8 - n;
current |= 0xFF >>> n; // this should be EOS symbol
out.writeByte((int) current);
}
} finally {
out = null;
current = 0;
n = 0;
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does end() do?
end() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackHuffmanEncoder.java.
Where is end() defined?
end() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackHuffmanEncoder.java at line 162.
What calls end()?
end() is called by 1 function(s): encode.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free