addFlowControlled() — netty Function Reference
Architecture documentation for the addFlowControlled() function in DefaultHttp2RemoteFlowController.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1e16e1a0_ef04_fd1d_76cb_cdbaab5d69a7["addFlowControlled()"] 415966d7_2c19_58a9_659f_282cc732e73c["DefaultHttp2RemoteFlowController"] 1e16e1a0_ef04_fd1d_76cb_cdbaab5d69a7 -->|defined in| 415966d7_2c19_58a9_659f_282cc732e73c f0e6edb9_3447_b465_6d76_673893b51c9e["enqueueFrame()"] 1e16e1a0_ef04_fd1d_76cb_cdbaab5d69a7 -->|calls| f0e6edb9_3447_b465_6d76_673893b51c9e style 1e16e1a0_ef04_fd1d_76cb_cdbaab5d69a7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowController.java lines 208–218
@Override
public void addFlowControlled(Http2Stream stream, FlowControlled frame) {
// The context can be null assuming the frame will be queued and send later when the context is set.
assert ctx == null || ctx.executor().inEventLoop();
checkNotNull(frame, "frame");
try {
monitor.enqueueFrame(state(stream), frame);
} catch (Throwable t) {
frame.error(ctx, t);
}
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does addFlowControlled() do?
addFlowControlled() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowController.java.
Where is addFlowControlled() defined?
addFlowControlled() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowController.java at line 208.
What does addFlowControlled() call?
addFlowControlled() calls 1 function(s): enqueueFrame.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free