Home / Function/ readPingFrame() — netty Function Reference

readPingFrame() — netty Function Reference

Architecture documentation for the readPingFrame() function in SpdyFrameCodec.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  ca5c0fce_f3ae_2ef4_4696_ddc7d5ce572b["readPingFrame()"]
  393922cf_b1e2_6f1f_471a_694c3714fb63["SpdyFrameCodec"]
  ca5c0fce_f3ae_2ef4_4696_ddc7d5ce572b -->|defined in| 393922cf_b1e2_6f1f_471a_694c3714fb63
  style ca5c0fce_f3ae_2ef4_4696_ddc7d5ce572b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyFrameCodec.java lines 398–404

    @Override
    public void readPingFrame(int id) {
        read = true;

        SpdyPingFrame spdyPingFrame = new DefaultSpdyPingFrame(id);
        ctx.fireChannelRead(spdyPingFrame);
    }

Domain

Subdomains

Frequently Asked Questions

What does readPingFrame() do?
readPingFrame() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyFrameCodec.java.
Where is readPingFrame() defined?
readPingFrame() is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyFrameCodec.java at line 398.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free