Home / Class/ UdtChannelOption Class — netty Architecture

UdtChannelOption Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  3f601f6d_f293_9394_a7a1_4522d1a13d14["UdtChannelOption"]
  e7a4f11f_cbaf_6964_7f62_f27139c035ce["UdtChannelOption.java"]
  3f601f6d_f293_9394_a7a1_4522d1a13d14 -->|defined in| e7a4f11f_cbaf_6964_7f62_f27139c035ce
  2c539019_f174_a9c2_ab1a_77cc088e7039["UdtChannelOption()"]
  3f601f6d_f293_9394_a7a1_4522d1a13d14 -->|method| 2c539019_f174_a9c2_ab1a_77cc088e7039

Relationship Graph

Source Code

transport-udt/src/main/java/io/netty/channel/udt/UdtChannelOption.java lines 26–57

@Deprecated
public final class UdtChannelOption<T> extends ChannelOption<T> {

    /**
     * See {@link OptionUDT#Protocol_Receive_Buffer_Size}.
     */
    public static final ChannelOption<Integer> PROTOCOL_RECEIVE_BUFFER_SIZE =
            valueOf(UdtChannelOption.class, "PROTOCOL_RECEIVE_BUFFER_SIZE");

    /**
     * See {@link OptionUDT#Protocol_Send_Buffer_Size}.
     */
    public static final ChannelOption<Integer> PROTOCOL_SEND_BUFFER_SIZE =
            valueOf(UdtChannelOption.class, "PROTOCOL_SEND_BUFFER_SIZE");

    /**
     * See {@link OptionUDT#System_Receive_Buffer_Size}.
     */
    public static final ChannelOption<Integer> SYSTEM_RECEIVE_BUFFER_SIZE =
            valueOf(UdtChannelOption.class, "SYSTEM_RECEIVE_BUFFER_SIZE");

    /**
     * See {@link OptionUDT#System_Send_Buffer_Size}.
     */
    public static final ChannelOption<Integer> SYSTEM_SEND_BUFFER_SIZE =
            valueOf(UdtChannelOption.class, "SYSTEM_SEND_BUFFER_SIZE");

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

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free