Home / Function/ initialWindowSizeShouldOnlyChangeStreams() — netty Function Reference

initialWindowSizeShouldOnlyChangeStreams() — netty Function Reference

Architecture documentation for the initialWindowSizeShouldOnlyChangeStreams() function in DefaultHttp2RemoteFlowControllerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  c5c060aa_8632_91ed_8225_abce4cb795ef["initialWindowSizeShouldOnlyChangeStreams()"]
  f8fd7697_92d4_6455_4dd8_09a33ac81a6f["DefaultHttp2RemoteFlowControllerTest"]
  c5c060aa_8632_91ed_8225_abce4cb795ef -->|defined in| f8fd7697_92d4_6455_4dd8_09a33ac81a6f
  72f6527f_6737_5bc4_f643_b308fe4de273["window()"]
  c5c060aa_8632_91ed_8225_abce4cb795ef -->|calls| 72f6527f_6737_5bc4_f643_b308fe4de273
  90444244_2b60_c843_559a_6c55d7a4e9ac["assertWritabilityChanged()"]
  c5c060aa_8632_91ed_8225_abce4cb795ef -->|calls| 90444244_2b60_c843_559a_6c55d7a4e9ac
  style c5c060aa_8632_91ed_8225_abce4cb795ef fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java lines 124–133

    @Test
    public void initialWindowSizeShouldOnlyChangeStreams() throws Http2Exception {
        controller.initialWindowSize(0);
        assertEquals(DEFAULT_WINDOW_SIZE, window(CONNECTION_STREAM_ID));
        assertEquals(0, window(STREAM_A));
        assertEquals(0, window(STREAM_B));
        assertEquals(0, window(STREAM_C));
        assertEquals(0, window(STREAM_D));
        assertWritabilityChanged(1, false);
    }

Domain

Subdomains

Frequently Asked Questions

What does initialWindowSizeShouldOnlyChangeStreams() do?
initialWindowSizeShouldOnlyChangeStreams() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java.
Where is initialWindowSizeShouldOnlyChangeStreams() defined?
initialWindowSizeShouldOnlyChangeStreams() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java at line 124.
What does initialWindowSizeShouldOnlyChangeStreams() call?
initialWindowSizeShouldOnlyChangeStreams() calls 2 function(s): assertWritabilityChanged, window.

Analyze Your Own Codebase

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

Try Supermodel Free