Home / Function/ testWriteAndReadFrames() — netty Function Reference

testWriteAndReadFrames() — netty Function Reference

Architecture documentation for the testWriteAndReadFrames() function in Http3PushStreamTest.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 3

Entity Profile

Dependency Diagram

graph TD
  b66e6737_5bd5_a43a_a185_c4b2f1c65757["testWriteAndReadFrames()"]
  c9142e7f_8050_3c0d_eeaf_c4c0175b89af["Http3PushStreamTest"]
  b66e6737_5bd5_a43a_a185_c4b2f1c65757 -->|defined in| c9142e7f_8050_3c0d_eeaf_c4c0175b89af
  bc2b69cf_4a2e_02e2_8b42_ab23aadd4534["headersData()"]
  bc2b69cf_4a2e_02e2_8b42_ab23aadd4534 -->|calls| b66e6737_5bd5_a43a_a185_c4b2f1c65757
  85f8f9a6_213c_d72e_bb67_c7f81c508dcb["headersDataTrailers()"]
  85f8f9a6_213c_d72e_bb67_c7f81c508dcb -->|calls| b66e6737_5bd5_a43a_a185_c4b2f1c65757
  c1c5ba3d_d9b9_bdbe_1b58_de482403b835["updateMaxPushId()"]
  c1c5ba3d_d9b9_bdbe_1b58_de482403b835 -->|calls| b66e6737_5bd5_a43a_a185_c4b2f1c65757
  8f66e270_3563_8590_fe00_1d051c519372["writeAndReadFrame()"]
  b66e6737_5bd5_a43a_a185_c4b2f1c65757 -->|calls| 8f66e270_3563_8590_fe00_1d051c519372
  style b66e6737_5bd5_a43a_a185_c4b2f1c65757 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/Http3PushStreamTest.java lines 147–158

    private void testWriteAndReadFrames(Http3RequestStreamFrame... frames) throws Exception {
        final EmbeddedQuicStreamChannel serverStream = newServerStream();
        final EmbeddedQuicStreamChannel clientStream = newClientStream(serverStream);
        try {
            for (Http3RequestStreamFrame frame : frames) {
                writeAndReadFrame(serverStream, clientStream, frame);
            }
        } finally {
            assertFalse(serverStream.finish());
            assertFalse(clientStream.finish());
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does testWriteAndReadFrames() do?
testWriteAndReadFrames() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3PushStreamTest.java.
Where is testWriteAndReadFrames() defined?
testWriteAndReadFrames() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3PushStreamTest.java at line 147.
What does testWriteAndReadFrames() call?
testWriteAndReadFrames() calls 1 function(s): writeAndReadFrame.
What calls testWriteAndReadFrames()?
testWriteAndReadFrames() is called by 3 function(s): headersData, headersDataTrailers, updateMaxPushId.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free