onRstStreamRead() — netty Function Reference
Architecture documentation for the onRstStreamRead() function in Http2FrameCodec.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 848db713_1bc2_fe18_fe28_cdc544f5cdfe["onRstStreamRead()"] c7728670_9ef4_3d0d_475d_7c991c96be4c["FrameListener"] 848db713_1bc2_fe18_fe28_cdc544f5cdfe -->|defined in| c7728670_9ef4_3d0d_475d_7c991c96be4c c3697987_0f51_1bd9_b480_661a55bd7f7a["onHttp2Frame()"] 848db713_1bc2_fe18_fe28_cdc544f5cdfe -->|calls| c3697987_0f51_1bd9_b480_661a55bd7f7a style 848db713_1bc2_fe18_fe28_cdc544f5cdfe fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameCodec.java lines 618–622
@Override
public void onRstStreamRead(ChannelHandlerContext ctx, int streamId, long errorCode) {
Http2FrameStream stream = requireStream(streamId);
onHttp2Frame(ctx, new DefaultHttp2ResetFrame(errorCode).stream(stream));
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does onRstStreamRead() do?
onRstStreamRead() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameCodec.java.
Where is onRstStreamRead() defined?
onRstStreamRead() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameCodec.java at line 618.
What does onRstStreamRead() call?
onRstStreamRead() calls 1 function(s): onHttp2Frame.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free