Home / Type/ State Type — netty Architecture

State Type — netty Architecture

Architecture documentation for the State type/interface in SpdyFrameDecoder.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  188a7bcc_26e4_7d5f_c9a4_951fce1df077["State"]
  b72bbeda_d69a_d326_5b37_be897025f029["SpdyFrameDecoder.java"]
  188a7bcc_26e4_7d5f_c9a4_951fce1df077 -->|defined in| b72bbeda_d69a_d326_5b37_be897025f029
  style 188a7bcc_26e4_7d5f_c9a4_951fce1df077 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyFrameDecoder.java lines 65–81

    private enum State {
        READ_COMMON_HEADER,
        READ_DATA_FRAME,
        READ_SYN_STREAM_FRAME,
        READ_SYN_REPLY_FRAME,
        READ_RST_STREAM_FRAME,
        READ_SETTINGS_FRAME,
        READ_SETTING,
        READ_PING_FRAME,
        READ_GOAWAY_FRAME,
        READ_HEADERS_FRAME,
        READ_WINDOW_UPDATE_FRAME,
        READ_UNKNOWN_FRAME,
        READ_HEADER_BLOCK,
        DISCARD_FRAME,
        FRAME_ERROR
    }

Frequently Asked Questions

What is the State type?
State is a type/interface in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyFrameDecoder.java.
Where is State defined?
State is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyFrameDecoder.java at line 65.

Analyze Your Own Codebase

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

Try Supermodel Free