Home / Class/ SctpChannelOption Class — netty Architecture

SctpChannelOption Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  873ac82a_4c46_a861_996b_3665943f6b1e["SctpChannelOption"]
  4e197cf1_dd39_8ceb_3be9_5b52cece21ff["SctpChannelOption.java"]
  873ac82a_4c46_a861_996b_3665943f6b1e -->|defined in| 4e197cf1_dd39_8ceb_3be9_5b52cece21ff
  1f6e437f_c533_52cc_3157_c76620049da6["SctpChannelOption()"]
  873ac82a_4c46_a861_996b_3665943f6b1e -->|method| 1f6e437f_c533_52cc_3157_c76620049da6

Relationship Graph

Source Code

transport-sctp/src/main/java/io/netty/channel/sctp/SctpChannelOption.java lines 26–48

public final class SctpChannelOption<T> extends ChannelOption<T> {

    public static final ChannelOption<Boolean> SCTP_DISABLE_FRAGMENTS =
            valueOf(SctpChannelOption.class, "SCTP_DISABLE_FRAGMENTS");
    public static final ChannelOption<Boolean> SCTP_EXPLICIT_COMPLETE =
            valueOf(SctpChannelOption.class, "SCTP_EXPLICIT_COMPLETE");
    public static final ChannelOption<Integer> SCTP_FRAGMENT_INTERLEAVE =
            valueOf(SctpChannelOption.class, "SCTP_FRAGMENT_INTERLEAVE");
    public static final ChannelOption<InitMaxStreams> SCTP_INIT_MAXSTREAMS =
            valueOf(SctpChannelOption.class, "SCTP_INIT_MAXSTREAMS");

    public static final ChannelOption<Boolean> SCTP_NODELAY =
            valueOf(SctpChannelOption.class, "SCTP_NODELAY");
    public static final ChannelOption<SocketAddress> SCTP_PRIMARY_ADDR =
            valueOf(SctpChannelOption.class, "SCTP_PRIMARY_ADDR");
    public static final ChannelOption<SocketAddress> SCTP_SET_PEER_PRIMARY_ADDR =
            valueOf(SctpChannelOption.class, "SCTP_SET_PEER_PRIMARY_ADDR");

    @SuppressWarnings({ "unused", "deprecation" })
    private SctpChannelOption() {
        super(null);
    }
}

Frequently Asked Questions

What is the SctpChannelOption class?
SctpChannelOption is a class in the netty codebase, defined in transport-sctp/src/main/java/io/netty/channel/sctp/SctpChannelOption.java.
Where is SctpChannelOption defined?
SctpChannelOption is defined in transport-sctp/src/main/java/io/netty/channel/sctp/SctpChannelOption.java at line 26.

Analyze Your Own Codebase

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

Try Supermodel Free