Home / Function/ streamWindowExhaustedDoesNotWrite() — netty Function Reference

streamWindowExhaustedDoesNotWrite() — netty Function Reference

Architecture documentation for the streamWindowExhaustedDoesNotWrite() function in UniformStreamByteDistributorTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  529feccb_987c_8256_b2b2_8dab7663329c["streamWindowExhaustedDoesNotWrite()"]
  c9ed8a9b_20d0_d85d_3ba2_4bce8a2cb72f["UniformStreamByteDistributorTest"]
  529feccb_987c_8256_b2b2_8dab7663329c -->|defined in| c9ed8a9b_20d0_d85d_3ba2_4bce8a2cb72f
  874cc0a8_d364_ef65_d3c3_16d61b243e73["initState()"]
  529feccb_987c_8256_b2b2_8dab7663329c -->|calls| 874cc0a8_d364_ef65_d3c3_16d61b243e73
  25e52e77_a9b5_a8d2_5680_6ca6e99dc744["write()"]
  529feccb_987c_8256_b2b2_8dab7663329c -->|calls| 25e52e77_a9b5_a8d2_5680_6ca6e99dc744
  82fd38f9_f111_4681_d6b7_0b1347efd00c["verifyWrite()"]
  529feccb_987c_8256_b2b2_8dab7663329c -->|calls| 82fd38f9_f111_4681_d6b7_0b1347efd00c
  style 529feccb_987c_8256_b2b2_8dab7663329c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/UniformStreamByteDistributorTest.java lines 223–234

    @Test
    public void streamWindowExhaustedDoesNotWrite() throws Http2Exception {
        initState(STREAM_A, 0, true, false);
        initState(STREAM_B, 0, true);
        initState(STREAM_C, 0, true);
        initState(STREAM_D, 0, true, false);

        assertFalse(write(10));
        verifyWrite(STREAM_B, 0);
        verifyWrite(STREAM_C, 0);
        verifyNoMoreInteractions(writer);
    }

Domain

Subdomains

Frequently Asked Questions

What does streamWindowExhaustedDoesNotWrite() do?
streamWindowExhaustedDoesNotWrite() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/UniformStreamByteDistributorTest.java.
Where is streamWindowExhaustedDoesNotWrite() defined?
streamWindowExhaustedDoesNotWrite() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/UniformStreamByteDistributorTest.java at line 223.
What does streamWindowExhaustedDoesNotWrite() call?
streamWindowExhaustedDoesNotWrite() calls 3 function(s): initState, verifyWrite, write.

Analyze Your Own Codebase

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

Try Supermodel Free