Home / Type/ State Type — netty Architecture

State Type — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  66fcbe2a_63d7_4b70_1cb3_2714b1a37b66["State"]
  c1e1e872_4732_0b9b_e792_0abd34dc0385["State.java"]
  66fcbe2a_63d7_4b70_1cb3_2714b1a37b66 -->|defined in| c1e1e872_4732_0b9b_e792_0abd34dc0385
  style 66fcbe2a_63d7_4b70_1cb3_2714b1a37b66 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/pcap/State.java lines 21–42

enum State {

    /**
     * The handler is not active.
     */
    INIT,

    /**
     * The handler is active and actively writing Pcap data.
     */
    WRITING,

    /**
     * The handler is paused. No Pcap data will be written.
     */
    PAUSED,

    /**
     * The handler is closed.
     */
    CLOSED
}

Frequently Asked Questions

What is the State type?
State is a type/interface in the netty codebase, defined in handler/src/main/java/io/netty/handler/pcap/State.java.
Where is State defined?
State is defined in handler/src/main/java/io/netty/handler/pcap/State.java at line 21.

Analyze Your Own Codebase

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

Try Supermodel Free