incrementWindowSize() — netty Function Reference
Architecture documentation for the incrementWindowSize() function in DefaultHttp2LocalFlowController.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 8f5c83ec_a0ba_8175_a92b_575a502628da["incrementWindowSize()"] 36ddda9f_3efd_b028_26eb_619b997ea963["DefaultHttp2LocalFlowController"] 8f5c83ec_a0ba_8175_a92b_575a502628da -->|defined in| 36ddda9f_3efd_b028_26eb_619b997ea963 99d2bb23_5d25_b9c3_9198_e95ecb1dcb00["incrementInitialStreamWindow()"] 8f5c83ec_a0ba_8175_a92b_575a502628da -->|calls| 99d2bb23_5d25_b9c3_9198_e95ecb1dcb00 03837159_529f_3d31_e83d_d29893d9aba0["writeWindowUpdateIfNeeded()"] 8f5c83ec_a0ba_8175_a92b_575a502628da -->|calls| 03837159_529f_3d31_e83d_d29893d9aba0 style 8f5c83ec_a0ba_8175_a92b_575a502628da fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2LocalFlowController.java lines 165–173
@Override
public void incrementWindowSize(Http2Stream stream, int delta) throws Http2Exception {
assert ctx != null && ctx.executor().inEventLoop();
FlowState state = state(stream);
// Just add the delta to the stream-specific initial window size so that the next time the window
// expands it will grow to the new initial size.
state.incrementInitialStreamWindow(delta);
state.writeWindowUpdateIfNeeded();
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does incrementWindowSize() do?
incrementWindowSize() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2LocalFlowController.java.
Where is incrementWindowSize() defined?
incrementWindowSize() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2LocalFlowController.java at line 165.
What does incrementWindowSize() call?
incrementWindowSize() calls 2 function(s): incrementInitialStreamWindow, writeWindowUpdateIfNeeded.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free