Home / Function/ pingAckFrameShouldMatch() — netty Function Reference

pingAckFrameShouldMatch() — netty Function Reference

Architecture documentation for the pingAckFrameShouldMatch() function in Http2FrameRoundtripTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  c81f890b_68a2_065c_9e18_e32ba8d70b90["pingAckFrameShouldMatch()"]
  900e14d5_99d5_0a22_aeb4_72af4ffe3fca["Http2FrameRoundtripTest"]
  c81f890b_68a2_065c_9e18_e32ba8d70b90 -->|defined in| 900e14d5_99d5_0a22_aeb4_72af4ffe3fca
  2ccb6e24_01de_9d82_8893_0e095430f4da["readFrames()"]
  c81f890b_68a2_065c_9e18_e32ba8d70b90 -->|calls| 2ccb6e24_01de_9d82_8893_0e095430f4da
  style c81f890b_68a2_065c_9e18_e32ba8d70b90 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameRoundtripTest.java lines 364–372

    @Test
    public void pingAckFrameShouldMatch() throws Exception {
        writer.writePing(ctx, true, 1234567, ctx.newPromise());
        readFrames();

        ArgumentCaptor<Long> captor = ArgumentCaptor.forClass(long.class);
        verify(listener).onPingAckRead(eq(ctx), captor.capture());
        assertEquals(1234567, (long) captor.getValue());
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does pingAckFrameShouldMatch() do?
pingAckFrameShouldMatch() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameRoundtripTest.java.
Where is pingAckFrameShouldMatch() defined?
pingAckFrameShouldMatch() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameRoundtripTest.java at line 364.
What does pingAckFrameShouldMatch() call?
pingAckFrameShouldMatch() 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