logRstStream() — netty Function Reference
Architecture documentation for the logRstStream() function in Http2FrameLogger.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a9d70d9c_752f_f4d4_3c93_b95d368e4352["logRstStream()"] b05a86d6_042a_ba9f_e399_5cb7b15de65a["Http2FrameLogger"] a9d70d9c_752f_f4d4_3c93_b95d368e4352 -->|defined in| b05a86d6_042a_ba9f_e399_5cb7b15de65a a20063d9_42e3_4fe4_db8b_782d12725438["isEnabled()"] a9d70d9c_752f_f4d4_3c93_b95d368e4352 -->|calls| a20063d9_42e3_4fe4_db8b_782d12725438 style a9d70d9c_752f_f4d4_3c93_b95d368e4352 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java lines 101–106
public void logRstStream(Direction direction, ChannelHandlerContext ctx, int streamId, long errorCode) {
if (isEnabled()) {
logger.log(level, "{} {} RST_STREAM: streamId={} errorCode={}", ctx.channel(),
direction.name(), streamId, errorCode);
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does logRstStream() do?
logRstStream() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java.
Where is logRstStream() defined?
logRstStream() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java at line 101.
What does logRstStream() call?
logRstStream() calls 1 function(s): isEnabled.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free