pingFrameShouldMatch() — netty Function Reference
Architecture documentation for the pingFrameShouldMatch() function in Http2FrameRoundtripTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD f0d6afdd_f00c_2dd3_be57_dc47299c2153["pingFrameShouldMatch()"] 900e14d5_99d5_0a22_aeb4_72af4ffe3fca["Http2FrameRoundtripTest"] f0d6afdd_f00c_2dd3_be57_dc47299c2153 -->|defined in| 900e14d5_99d5_0a22_aeb4_72af4ffe3fca 2ccb6e24_01de_9d82_8893_0e095430f4da["readFrames()"] f0d6afdd_f00c_2dd3_be57_dc47299c2153 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da style f0d6afdd_f00c_2dd3_be57_dc47299c2153 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameRoundtripTest.java lines 354–362
@Test
public void pingFrameShouldMatch() throws Exception {
writer.writePing(ctx, false, 1234567, ctx.newPromise());
readFrames();
ArgumentCaptor<Long> captor = ArgumentCaptor.forClass(long.class);
verify(listener).onPingRead(eq(ctx), captor.capture());
assertEquals(1234567, (long) captor.getValue());
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does pingFrameShouldMatch() do?
pingFrameShouldMatch() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameRoundtripTest.java.
Where is pingFrameShouldMatch() defined?
pingFrameShouldMatch() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameRoundtripTest.java at line 354.
What does pingFrameShouldMatch() call?
pingFrameShouldMatch() calls 1 function(s): readFrames.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free