writeValidFrame() — netty Function Reference
Architecture documentation for the writeValidFrame() function in Http3ControlStreamInboundHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 546e6143_8a55_dfb5_cac2_81725a9bb469["writeValidFrame()"] 902435e9_3b03_3141_b560_3cdae4f30cb6["Http3ControlStreamInboundHandlerTest"] 546e6143_8a55_dfb5_cac2_81725a9bb469 -->|defined in| 902435e9_3b03_3141_b560_3cdae4f30cb6 3d346ee5_acba_dac7_e502_63112e0501b7["testValidGoAwayFrame()"] 3d346ee5_acba_dac7_e502_63112e0501b7 -->|calls| 546e6143_8a55_dfb5_cac2_81725a9bb469 7553c39e_2a37_c0d1_09c8_111b3a46e4ef["testSecondGoAwayFrameFailsWithHigherId()"] 7553c39e_2a37_c0d1_09c8_111b3a46e4ef -->|calls| 546e6143_8a55_dfb5_cac2_81725a9bb469 c3dae7d4_cd72_ebe4_db65_81960887e6b9["testGoAwayFrameIdNonRequestStream()"] c3dae7d4_cd72_ebe4_db65_81960887e6b9 -->|calls| 546e6143_8a55_dfb5_cac2_81725a9bb469 4ddfc9b0_11a4_1383_79c0_316c5abbe8f5["testHttp3MaxPushIdFrames()"] 4ddfc9b0_11a4_1383_79c0_316c5abbe8f5 -->|calls| 546e6143_8a55_dfb5_cac2_81725a9bb469 74000d64_f09f_61fa_d973_0db86dd0dba4["testSecondHttp3MaxPushIdFrameFailsWithSmallerId()"] 74000d64_f09f_61fa_d973_0db86dd0dba4 -->|calls| 546e6143_8a55_dfb5_cac2_81725a9bb469 style 546e6143_8a55_dfb5_cac2_81725a9bb469 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/test/java/io/netty/handler/codec/http3/Http3ControlStreamInboundHandlerTest.java lines 226–234
private void writeValidFrame(boolean forwardControlFrames, EmbeddedChannel channel,
Http3ControlStreamFrame controlStreamFrame) {
assertEquals(forwardControlFrames, channel.writeInbound(controlStreamFrame));
if (forwardControlFrames) {
assertFrameSame(controlStreamFrame, channel.readInbound());
} else {
assertFrameReleased(controlStreamFrame);
}
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does writeValidFrame() do?
writeValidFrame() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3ControlStreamInboundHandlerTest.java.
Where is writeValidFrame() defined?
writeValidFrame() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3ControlStreamInboundHandlerTest.java at line 226.
What calls writeValidFrame()?
writeValidFrame() is called by 5 function(s): testGoAwayFrameIdNonRequestStream, testHttp3MaxPushIdFrames, testSecondGoAwayFrameFailsWithHigherId, testSecondHttp3MaxPushIdFrameFailsWithSmallerId, testValidGoAwayFrame.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free