Home / Type/ CqeSize Type — netty Architecture

CqeSize Type — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  f4567c01_8b20_130f_86c3_392198dca93d["CqeSize"]
  717c855d_9e4a_fd30_84d3_a9f0a3b18918["SubmissionQueueTest.java"]
  f4567c01_8b20_130f_86c3_392198dca93d -->|defined in| 717c855d_9e4a_fd30_84d3_a9f0a3b18918
  style f4567c01_8b20_130f_86c3_392198dca93d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-native-io_uring/src/test/java/io/netty/channel/uring/SubmissionQueueTest.java lines 188–201

    public enum CqeSize {
        NORMAL,
        LARGE,
        MIXED;

        int setupFlag() {
            switch (this) {
                case NORMAL: return 0;
                case LARGE: return Native.IORING_SETUP_CQE32;
                case MIXED: return Native.IORING_SETUP_CQE_MIXED;
                default: throw new AssertionError();
            }
        }
    }

Frequently Asked Questions

What is the CqeSize type?
CqeSize is a type/interface in the netty codebase, defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/SubmissionQueueTest.java.
Where is CqeSize defined?
CqeSize is defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/SubmissionQueueTest.java at line 188.

Analyze Your Own Codebase

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

Try Supermodel Free