countRstFrameErrorCode() — netty Function Reference
Architecture documentation for the countRstFrameErrorCode() function in Http2MaxRstFrameLimitEncoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 980965b6_3c7a_be97_9097_595d39a50d76["countRstFrameErrorCode()"] 70483983_583b_a156_29a1_a1f5db1cbe8a["Http2MaxRstFrameLimitEncoder"] 980965b6_3c7a_be97_9097_595d39a50d76 -->|defined in| 70483983_583b_a156_29a1_a1f5db1cbe8a 5377e62a_6e94_1f44_1916_4aa3e2c8d5a3["ChannelFuture()"] 5377e62a_6e94_1f44_1916_4aa3e2c8d5a3 -->|calls| 980965b6_3c7a_be97_9097_595d39a50d76 style 980965b6_3c7a_be97_9097_595d39a50d76 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MaxRstFrameLimitEncoder.java lines 90–93
private boolean countRstFrameErrorCode(long errorCode) {
// Don't count CANCEL and NO_ERROR as these might be ok.
return errorCode != Http2Error.CANCEL.code() && errorCode != Http2Error.NO_ERROR.code();
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does countRstFrameErrorCode() do?
countRstFrameErrorCode() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MaxRstFrameLimitEncoder.java.
Where is countRstFrameErrorCode() defined?
countRstFrameErrorCode() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MaxRstFrameLimitEncoder.java at line 90.
What calls countRstFrameErrorCode()?
countRstFrameErrorCode() is called by 1 function(s): ChannelFuture.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free