windowUpdateShouldChangeStreamWindow() — netty Function Reference
Architecture documentation for the windowUpdateShouldChangeStreamWindow() function in DefaultHttp2RemoteFlowControllerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 787ea31a_15c1_ceba_c30f_31aa0bd170d4["windowUpdateShouldChangeStreamWindow()"] f8fd7697_92d4_6455_4dd8_09a33ac81a6f["DefaultHttp2RemoteFlowControllerTest"] 787ea31a_15c1_ceba_c30f_31aa0bd170d4 -->|defined in| f8fd7697_92d4_6455_4dd8_09a33ac81a6f 947caffb_54ef_9984_108e_69119ef018d1["incrementWindowSize()"] 787ea31a_15c1_ceba_c30f_31aa0bd170d4 -->|calls| 947caffb_54ef_9984_108e_69119ef018d1 72f6527f_6737_5bc4_f643_b308fe4de273["window()"] 787ea31a_15c1_ceba_c30f_31aa0bd170d4 -->|calls| 72f6527f_6737_5bc4_f643_b308fe4de273 style 787ea31a_15c1_ceba_c30f_31aa0bd170d4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java lines 146–155
@Test
public void windowUpdateShouldChangeStreamWindow() throws Http2Exception {
incrementWindowSize(STREAM_A, 100);
assertEquals(DEFAULT_WINDOW_SIZE, window(CONNECTION_STREAM_ID));
assertEquals(DEFAULT_WINDOW_SIZE + 100, window(STREAM_A));
assertEquals(DEFAULT_WINDOW_SIZE, window(STREAM_B));
assertEquals(DEFAULT_WINDOW_SIZE, window(STREAM_C));
assertEquals(DEFAULT_WINDOW_SIZE, window(STREAM_D));
verifyNoInteractions(listener);
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does windowUpdateShouldChangeStreamWindow() do?
windowUpdateShouldChangeStreamWindow() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java.
Where is windowUpdateShouldChangeStreamWindow() defined?
windowUpdateShouldChangeStreamWindow() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java at line 146.
What does windowUpdateShouldChangeStreamWindow() call?
windowUpdateShouldChangeStreamWindow() calls 2 function(s): incrementWindowSize, window.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free