Home / Class/ Http2FrameTypes Class — netty Architecture

Http2FrameTypes Class — netty Architecture

Architecture documentation for the Http2FrameTypes class in Http2FrameTypes.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  84875855_07f0_0c66_1b64_2f558eb83671["Http2FrameTypes"]
  ad43ac17_2c1f_4b13_e083_d0e1b59ce7aa["Http2FrameTypes.java"]
  84875855_07f0_0c66_1b64_2f558eb83671 -->|defined in| ad43ac17_2c1f_4b13_e083_d0e1b59ce7aa
  6bad5bf6_24e9_a9fb_78f0_eaee7ca0ced1["Http2FrameTypes()"]
  84875855_07f0_0c66_1b64_2f558eb83671 -->|method| 6bad5bf6_24e9_a9fb_78f0_eaee7ca0ced1

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameTypes.java lines 21–35

public final class Http2FrameTypes {
    public static final byte DATA = 0x0;
    public static final byte HEADERS = 0x1;
    public static final byte PRIORITY = 0x2;
    public static final byte RST_STREAM = 0x3;
    public static final byte SETTINGS = 0x4;
    public static final byte PUSH_PROMISE = 0x5;
    public static final byte PING = 0x6;
    public static final byte GO_AWAY = 0x7;
    public static final byte WINDOW_UPDATE = 0x8;
    public static final byte CONTINUATION = 0x9;

    private Http2FrameTypes() {
    }
}

Frequently Asked Questions

What is the Http2FrameTypes class?
Http2FrameTypes is a class in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameTypes.java.
Where is Http2FrameTypes defined?
Http2FrameTypes is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameTypes.java at line 21.

Analyze Your Own Codebase

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

Try Supermodel Free