finish() — netty Function Reference
Architecture documentation for the finish() function in HpackDecoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3d97e02b_938f_df8f_b607_d74819f6fa66["finish()"] 09e943af_04b7_39e7_f2dd_47f3684d790f["Http2HeadersSink"] 3d97e02b_938f_df8f_b607_d74819f6fa66 -->|defined in| 09e943af_04b7_39e7_f2dd_47f3684d790f f902eae9_e223_3289_c748_bbdc7d188389["decode()"] f902eae9_e223_3289_c748_bbdc7d188389 -->|calls| 3d97e02b_938f_df8f_b607_d74819f6fa66 style 3d97e02b_938f_df8f_b607_d74819f6fa66 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/HpackDecoder.java lines 541–547
void finish() throws Http2Exception {
if (exceededMaxLength) {
headerListSizeExceeded(streamId, maxHeaderListSize, true);
} else if (validationException != null) {
throw validationException;
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does finish() do?
finish() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackDecoder.java.
Where is finish() defined?
finish() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackDecoder.java at line 541.
What calls finish()?
finish() is called by 1 function(s): decode.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free