getEntry() — netty Function Reference
Architecture documentation for the getEntry() function in QpackDecoderDynamicTableTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 2f325bb8_3228_4f45_12c8_720ccf234b39["getEntry()"] 091d8141_4743_3fd2_b4c8_b5018e33c504["QpackDecoderDynamicTableTest"] 2f325bb8_3228_4f45_12c8_720ccf234b39 -->|defined in| 091d8141_4743_3fd2_b4c8_b5018e33c504 3b4b8ac5_0a03_046c_2e97_35007579afae["getEntryExceptionally()"] 3b4b8ac5_0a03_046c_2e97_35007579afae -->|calls| 2f325bb8_3228_4f45_12c8_720ccf234b39 6b7a7c02_4a90_20c8_86d6_a98036e7483f["setCapacity()"] 6b7a7c02_4a90_20c8_86d6_a98036e7483f -->|calls| 2f325bb8_3228_4f45_12c8_720ccf234b39 bd9ed665_b3f8_a6a0_8149_c1e4807bbd9a["add()"] bd9ed665_b3f8_a6a0_8149_c1e4807bbd9a -->|calls| 2f325bb8_3228_4f45_12c8_720ccf234b39 bd9ed665_b3f8_a6a0_8149_c1e4807bbd9a["add()"] 2f325bb8_3228_4f45_12c8_720ccf234b39 -->|calls| bd9ed665_b3f8_a6a0_8149_c1e4807bbd9a style 2f325bb8_3228_4f45_12c8_720ccf234b39 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderDynamicTableTest.java lines 50–59
@Test
public void getEntry() throws Exception {
QpackDecoderDynamicTable table = newTable(100);
QpackHeaderField entry = new QpackHeaderField("foo", "bar");
table.add(entry);
assertEquals(entry, table.getEntry(0));
table.clear();
assertThrows(QpackException.class, () -> table.getEntry(0));
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does getEntry() do?
getEntry() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderDynamicTableTest.java.
Where is getEntry() defined?
getEntry() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderDynamicTableTest.java at line 50.
What does getEntry() call?
getEntry() calls 1 function(s): add.
What calls getEntry()?
getEntry() is called by 3 function(s): add, getEntryExceptionally, setCapacity.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free