Home / Function/ initialWindowSize() — netty Function Reference

initialWindowSize() — netty Function Reference

Architecture documentation for the initialWindowSize() function in DefaultHttp2RemoteFlowController.java from the netty codebase.

Function java Buffer Allocators calls 3 called by 1

Entity Profile

Dependency Diagram

graph TD
  70f98aaa_d88c_9c64_6989_6eebed973749["initialWindowSize()"]
  3dadf6c6_c839_608f_accc_8c9408feae6d["ListenerWritabilityMonitor"]
  70f98aaa_d88c_9c64_6989_6eebed973749 -->|defined in| 3dadf6c6_c839_608f_accc_8c9408feae6d
  4726301f_0167_8ad7_ccda_f3c46efe04f9["initialWindowSize()"]
  4726301f_0167_8ad7_ccda_f3c46efe04f9 -->|calls| 70f98aaa_d88c_9c64_6989_6eebed973749
  f3d43993_1ede_3353_8257_e436049bf804["isWritableConnection()"]
  70f98aaa_d88c_9c64_6989_6eebed973749 -->|calls| f3d43993_1ede_3353_8257_e436049bf804
  e25c5ef3_f83a_4eaa_44cb_7f7e86d06ebd["checkAllWritabilityChanged()"]
  70f98aaa_d88c_9c64_6989_6eebed973749 -->|calls| e25c5ef3_f83a_4eaa_44cb_7f7e86d06ebd
  4726301f_0167_8ad7_ccda_f3c46efe04f9["initialWindowSize()"]
  70f98aaa_d88c_9c64_6989_6eebed973749 -->|calls| 4726301f_0167_8ad7_ccda_f3c46efe04f9
  style 70f98aaa_d88c_9c64_6989_6eebed973749 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowController.java lines 700–708

        @Override
        void initialWindowSize(int newWindowSize) throws Http2Exception {
            super.initialWindowSize(newWindowSize);
            if (isWritableConnection()) {
                // If the write operation does not occur we still need to check all streams because they
                // may have transitioned from writable to not writable.
                checkAllWritabilityChanged();
            }
        }

Domain

Subdomains

Frequently Asked Questions

What does initialWindowSize() do?
initialWindowSize() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowController.java.
Where is initialWindowSize() defined?
initialWindowSize() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowController.java at line 700.
What does initialWindowSize() call?
initialWindowSize() calls 3 function(s): checkAllWritabilityChanged, initialWindowSize, isWritableConnection.
What calls initialWindowSize()?
initialWindowSize() is called by 1 function(s): initialWindowSize.

Analyze Your Own Codebase

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

Try Supermodel Free