readFrames() — netty Function Reference
Architecture documentation for the readFrames() function in Http2FrameRoundtripTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 2ccb6e24_01de_9d82_8893_0e095430f4da["readFrames()"] 900e14d5_99d5_0a22_aeb4_72af4ffe3fca["Http2FrameRoundtripTest"] 2ccb6e24_01de_9d82_8893_0e095430f4da -->|defined in| 900e14d5_99d5_0a22_aeb4_72af4ffe3fca fd168eb0_da58_e68b_05bb_4ef5b7ced6a4["emptyDataShouldMatch()"] fd168eb0_da58_e68b_05bb_4ef5b7ced6a4 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da 21b8c988_9c97_9e0f_f21d_d9698de367e9["dataShouldMatch()"] 21b8c988_9c97_9e0f_f21d_d9698de367e9 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da ecc7579a_5842_9ae9_bf51_a5803f430296["dataWithPaddingShouldMatch()"] ecc7579a_5842_9ae9_bf51_a5803f430296 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da 243c1c92_d039_1775_0586_dd3e7b77cb19["largeDataFrameShouldMatch()"] 243c1c92_d039_1775_0586_dd3e7b77cb19 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da 45467f77_508f_0f47_e93d_d4f53129b6f0["emptyHeadersShouldMatch()"] 45467f77_508f_0f47_e93d_d4f53129b6f0 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da 0c6c671e_122c_bb46_b37b_14ca8eb7ac37["emptyHeadersWithPaddingShouldMatch()"] 0c6c671e_122c_bb46_b37b_14ca8eb7ac37 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da 2de0852d_f7ab_e8d8_63d4_d50302cd96e1["binaryHeadersWithoutPriorityShouldMatch()"] 2de0852d_f7ab_e8d8_63d4_d50302cd96e1 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da e3cb4f09_4d76_f247_7a37_adb4fca6d047["headersFrameWithoutPriorityShouldMatch()"] e3cb4f09_4d76_f247_7a37_adb4fca6d047 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da 2c95287e_9c2b_8934_7fad_961926e409ba["headersFrameWithPriorityShouldMatch()"] 2c95287e_9c2b_8934_7fad_961926e409ba -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da 6dcf2226_18b8_0a50_b347_90c507fe9c92["headersWithPaddingWithoutPriorityShouldMatch()"] 6dcf2226_18b8_0a50_b347_90c507fe9c92 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da ced6d780_12e4_8a7b_2967_0b07665e09af["headersWithPaddingWithPriorityShouldMatch()"] ced6d780_12e4_8a7b_2967_0b07665e09af -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da 93941c1e_59db_f6b2_2a49_ba40361c8762["continuedHeadersShouldMatch()"] 93941c1e_59db_f6b2_2a49_ba40361c8762 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da a741e1b2_6b52_073b_ee4e_f37f9e9f06d9["continuedHeadersWithPaddingShouldMatch()"] a741e1b2_6b52_073b_ee4e_f37f9e9f06d9 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da style 2ccb6e24_01de_9d82_8893_0e095430f4da fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameRoundtripTest.java lines 423–427
private void readFrames() throws Http2Exception {
// Now read all of the written frames.
ByteBuf write = captureWrites();
reader.readFrame(ctx, write, listener);
}
Domain
Subdomains
Called By
- binaryHeadersWithoutPriorityShouldMatch()
- continuedHeadersShouldMatch()
- continuedHeadersWithPaddingShouldMatch()
- continuedPushPromiseShouldMatch()
- continuedPushPromiseWithPaddingShouldMatch()
- dataShouldMatch()
- dataWithPaddingShouldMatch()
- emptyDataShouldMatch()
- emptyHeadersShouldMatch()
- emptyHeadersWithPaddingShouldMatch()
- emptyPushPromiseShouldMatch()
- emptySettingsFrameShouldMatch()
- goAwayFrameShouldMatch()
- headersFrameWithPriorityShouldMatch()
- headersFrameWithoutPriorityShouldMatch()
- headersThatAreTooBigShouldFail()
- headersWithPaddingWithPriorityShouldMatch()
- headersWithPaddingWithoutPriorityShouldMatch()
- largeDataFrameShouldMatch()
- pingAckFrameShouldMatch()
- pingFrameShouldMatch()
- priorityFrameShouldMatch()
- pushPromiseFrameShouldMatch()
- pushPromiseWithPaddingShouldMatch()
- rstStreamFrameShouldMatch()
- settingsAckShouldMatch()
- settingsShouldStripShouldMatch()
- windowUpdateFrameShouldMatch()
Source
Frequently Asked Questions
What does readFrames() do?
readFrames() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameRoundtripTest.java.
Where is readFrames() defined?
readFrames() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameRoundtripTest.java at line 423.
What calls readFrames()?
readFrames() is called by 28 function(s): binaryHeadersWithoutPriorityShouldMatch, continuedHeadersShouldMatch, continuedHeadersWithPaddingShouldMatch, continuedPushPromiseShouldMatch, continuedPushPromiseWithPaddingShouldMatch, dataShouldMatch, dataWithPaddingShouldMatch, emptyDataShouldMatch, and 20 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free