windowUpdateShouldChangeConnectionWindow() — netty Function Reference
Architecture documentation for the windowUpdateShouldChangeConnectionWindow() function in DefaultHttp2RemoteFlowControllerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD ef28a258_356b_c47b_6050_279264ee0398["windowUpdateShouldChangeConnectionWindow()"] f8fd7697_92d4_6455_4dd8_09a33ac81a6f["DefaultHttp2RemoteFlowControllerTest"] ef28a258_356b_c47b_6050_279264ee0398 -->|defined in| f8fd7697_92d4_6455_4dd8_09a33ac81a6f 947caffb_54ef_9984_108e_69119ef018d1["incrementWindowSize()"] ef28a258_356b_c47b_6050_279264ee0398 -->|calls| 947caffb_54ef_9984_108e_69119ef018d1 72f6527f_6737_5bc4_f643_b308fe4de273["window()"] ef28a258_356b_c47b_6050_279264ee0398 -->|calls| 72f6527f_6737_5bc4_f643_b308fe4de273 style ef28a258_356b_c47b_6050_279264ee0398 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java lines 135–144
@Test
public void windowUpdateShouldChangeConnectionWindow() throws Http2Exception {
incrementWindowSize(CONNECTION_STREAM_ID, 100);
assertEquals(DEFAULT_WINDOW_SIZE + 100, window(CONNECTION_STREAM_ID));
assertEquals(DEFAULT_WINDOW_SIZE, 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 windowUpdateShouldChangeConnectionWindow() do?
windowUpdateShouldChangeConnectionWindow() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java.
Where is windowUpdateShouldChangeConnectionWindow() defined?
windowUpdateShouldChangeConnectionWindow() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java at line 135.
What does windowUpdateShouldChangeConnectionWindow() call?
windowUpdateShouldChangeConnectionWindow() 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