payloadSmallerThanWindowShouldBeWrittenImmediately() — netty Function Reference
Architecture documentation for the payloadSmallerThanWindowShouldBeWrittenImmediately() function in DefaultHttp2RemoteFlowControllerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b49f8173_f52c_2c10_ad24_9b9966426113["payloadSmallerThanWindowShouldBeWrittenImmediately()"] f8fd7697_92d4_6455_4dd8_09a33ac81a6f["DefaultHttp2RemoteFlowControllerTest"] b49f8173_f52c_2c10_ad24_9b9966426113 -->|defined in| f8fd7697_92d4_6455_4dd8_09a33ac81a6f 136071dd_c92e_5482_7cb2_c1ba0769c1ab["FakeFlowControlled()"] b49f8173_f52c_2c10_ad24_9b9966426113 -->|calls| 136071dd_c92e_5482_7cb2_c1ba0769c1ab 85ffafbd_47aa_f4f5_fd02_71f26d692e10["sendData()"] b49f8173_f52c_2c10_ad24_9b9966426113 -->|calls| 85ffafbd_47aa_f4f5_fd02_71f26d692e10 4d627b61_f0ea_0927_043f_7bfb246d71d1["assertNotWritten()"] b49f8173_f52c_2c10_ad24_9b9966426113 -->|calls| 4d627b61_f0ea_0927_043f_7bfb246d71d1 da0712d5_2b96_e340_6c7a_17114adb9efc["assertFullyWritten()"] b49f8173_f52c_2c10_ad24_9b9966426113 -->|calls| da0712d5_2b96_e340_6c7a_17114adb9efc style b49f8173_f52c_2c10_ad24_9b9966426113 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java lines 157–166
@Test
public void payloadSmallerThanWindowShouldBeWrittenImmediately() throws Http2Exception {
FakeFlowControlled data = new FakeFlowControlled(5);
sendData(STREAM_A, data);
data.assertNotWritten();
verifyNoInteractions(listener);
controller.writePendingBytes();
data.assertFullyWritten();
verifyNoInteractions(listener);
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does payloadSmallerThanWindowShouldBeWrittenImmediately() do?
payloadSmallerThanWindowShouldBeWrittenImmediately() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java.
Where is payloadSmallerThanWindowShouldBeWrittenImmediately() defined?
payloadSmallerThanWindowShouldBeWrittenImmediately() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2RemoteFlowControllerTest.java at line 157.
What does payloadSmallerThanWindowShouldBeWrittenImmediately() call?
payloadSmallerThanWindowShouldBeWrittenImmediately() calls 4 function(s): FakeFlowControlled, assertFullyWritten, assertNotWritten, sendData.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free