setSessionReceiveWindowSize() — netty Function Reference
Architecture documentation for the setSessionReceiveWindowSize() function in SpdySessionHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a7318d77_ffe9_30f5_6445_00b268135cd7["setSessionReceiveWindowSize()"] 1fb79984_fd8e_cecc_3934_20ed3529f561["SpdySessionHandler"] a7318d77_ffe9_30f5_6445_00b268135cd7 -->|defined in| 1fb79984_fd8e_cecc_3934_20ed3529f561 style a7318d77_ffe9_30f5_6445_00b268135cd7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java lines 77–86
public void setSessionReceiveWindowSize(int sessionReceiveWindowSize) {
checkPositiveOrZero(sessionReceiveWindowSize, "sessionReceiveWindowSize");
// This will not send a window update frame immediately.
// If this value increases the allowed receive window size,
// a WINDOW_UPDATE frame will be sent when only half of the
// session window size remains during data frame processing.
// If this value decreases the allowed receive window size,
// the window will be reduced as data frames are processed.
initialSessionReceiveWindowSize = sessionReceiveWindowSize;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does setSessionReceiveWindowSize() do?
setSessionReceiveWindowSize() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java.
Where is setSessionReceiveWindowSize() defined?
setSessionReceiveWindowSize() is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java at line 77.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free