Home / Function/ onUnknownFrame() — netty Function Reference

onUnknownFrame() — netty Function Reference

Architecture documentation for the onUnknownFrame() function in DefaultHttp2ConnectionDecoder.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  d0471baa_b036_62f4_478e_f36505626ac8["onUnknownFrame()"]
  0189a990_8f54_63f5_92fb_f168c031db1e["FrameReadListener"]
  d0471baa_b036_62f4_478e_f36505626ac8 -->|defined in| 0189a990_8f54_63f5_92fb_f168c031db1e
  5c05c7ba_9c59_b9b3_7681_3399bc4f97a3["onUnknownFrame()"]
  5c05c7ba_9c59_b9b3_7681_3399bc4f97a3 -->|calls| d0471baa_b036_62f4_478e_f36505626ac8
  5c05c7ba_9c59_b9b3_7681_3399bc4f97a3["onUnknownFrame()"]
  d0471baa_b036_62f4_478e_f36505626ac8 -->|calls| 5c05c7ba_9c59_b9b3_7681_3399bc4f97a3
  style d0471baa_b036_62f4_478e_f36505626ac8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionDecoder.java lines 616–625

        @Override
        public void onUnknownFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags,
                ByteBuf payload) throws Http2Exception {
            Http2Stream stream = connection.stream(streamId);
            if (stream == null) {
                return;
            }

            listener.onUnknownFrame(ctx, frameType, streamId, flags, payload);
        }

Domain

Subdomains

Called By

Frequently Asked Questions

What does onUnknownFrame() do?
onUnknownFrame() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionDecoder.java.
Where is onUnknownFrame() defined?
onUnknownFrame() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionDecoder.java at line 616.
What does onUnknownFrame() call?
onUnknownFrame() calls 1 function(s): onUnknownFrame.
What calls onUnknownFrame()?
onUnknownFrame() is called by 1 function(s): onUnknownFrame.

Analyze Your Own Codebase

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

Try Supermodel Free