Home / Function/ addFlowControlled() — netty Function Reference

addFlowControlled() — netty Function Reference

Architecture documentation for the addFlowControlled() function in NoopHttp2RemoteFlowController.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  5f6863f8_54af_564f_1a1a_3d458bd13bef["addFlowControlled()"]
  db006f94_b31e_8a0c_a8bb_d7e808c29892["NoopHttp2RemoteFlowController"]
  5f6863f8_54af_564f_1a1a_3d458bd13bef -->|defined in| db006f94_b31e_8a0c_a8bb_d7e808c29892
  style 5f6863f8_54af_564f_1a1a_3d458bd13bef fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

microbench/src/main/java/io/netty/microbench/http2/NoopHttp2RemoteFlowController.java lines 61–67

    @Override
    public void addFlowControlled(Http2Stream stream, FlowControlled payload) {
        // Don't check size beforehand because Headers payload returns 0 all the time.
        do {
            payload.write(ctx, MAX_INITIAL_WINDOW_SIZE);
        } while (payload.size() > 0);
    }

Domain

Subdomains

Frequently Asked Questions

What does addFlowControlled() do?
addFlowControlled() is a function in the netty codebase, defined in microbench/src/main/java/io/netty/microbench/http2/NoopHttp2RemoteFlowController.java.
Where is addFlowControlled() defined?
addFlowControlled() is defined in microbench/src/main/java/io/netty/microbench/http2/NoopHttp2RemoteFlowController.java at line 61.

Analyze Your Own Codebase

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

Try Supermodel Free