enqueueFrameWithoutMerge() — netty Function Reference
Architecture documentation for the enqueueFrameWithoutMerge() function in DefaultHttp2RemoteFlowController.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD f8738cf0_d85b_703e_8ee7_73e6ccb0eda2["enqueueFrameWithoutMerge()"] b2e83a60_2b9a_b7db_749c_dd2e3fd31ba6["FlowState"] f8738cf0_d85b_703e_8ee7_73e6ccb0eda2 -->|defined in| b2e83a60_2b9a_b7db_749c_dd2e3fd31ba6 d6e8f2fe_a4c4_6f62_80b8_d7ad1ad01eac["enqueueFrame()"] d6e8f2fe_a4c4_6f62_80b8_d7ad1ad01eac -->|calls| f8738cf0_d85b_703e_8ee7_73e6ccb0eda2 95e04053_03f6_b964_917a_d1938dde19b7["hasFrame()"] f8738cf0_d85b_703e_8ee7_73e6ccb0eda2 -->|calls| 95e04053_03f6_b964_917a_d1938dde19b7 901e8263_c0ce_11c0_fd13_1147ae712683["incrementPendingBytes()"] f8738cf0_d85b_703e_8ee7_73e6ccb0eda2 -->|calls| 901e8263_c0ce_11c0_fd13_1147ae712683 style f8738cf0_d85b_703e_8ee7_73e6ccb0eda2 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowController.java lines 445–450
private void enqueueFrameWithoutMerge(FlowControlled frame) {
pendingWriteQueue.offer(frame);
// This must be called after adding to the queue in order so that hasFrame() is
// updated before updating the stream state.
incrementPendingBytes(frame.size(), true);
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does enqueueFrameWithoutMerge() do?
enqueueFrameWithoutMerge() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowController.java.
Where is enqueueFrameWithoutMerge() defined?
enqueueFrameWithoutMerge() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowController.java at line 445.
What does enqueueFrameWithoutMerge() call?
enqueueFrameWithoutMerge() calls 2 function(s): hasFrame, incrementPendingBytes.
What calls enqueueFrameWithoutMerge()?
enqueueFrameWithoutMerge() is called by 1 function(s): enqueueFrame.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free