Home / Class/ SctpServerChannel Class — netty Architecture

SctpServerChannel Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  b151be19_c36a_afbe_3120_2429995c6202["SctpServerChannel"]
  d638424d_dd8b_5367_56f2_99bebfe90111["SctpServerChannel.java"]
  b151be19_c36a_afbe_3120_2429995c6202 -->|defined in| d638424d_dd8b_5367_56f2_99bebfe90111
  f5a9ff2a_5710_8191_9377_409a3a0aa1ea["SctpServerChannel()"]
  b151be19_c36a_afbe_3120_2429995c6202 -->|method| f5a9ff2a_5710_8191_9377_409a3a0aa1ea
  7d76d068_2001_e621_6956_a8269752621e["T()"]
  b151be19_c36a_afbe_3120_2429995c6202 -->|method| 7d76d068_2001_e621_6956_a8269752621e
  99c9fa3b_57b1_a3f9_ffc9_2406b1a71a98["getAllLocalAddresses()"]
  b151be19_c36a_afbe_3120_2429995c6202 -->|method| 99c9fa3b_57b1_a3f9_ffc9_2406b1a71a98
  57463711_871a_bb8e_8d8b_b7ba716495ce["SctpChannel()"]
  b151be19_c36a_afbe_3120_2429995c6202 -->|method| 57463711_871a_bb8e_8d8b_b7ba716495ce

Relationship Graph

Source Code

transport-sctp/src/main/java/com/sun/nio/sctp/SctpServerChannel.java lines 25–51

@SuppressWarnings("all")
public abstract class SctpServerChannel extends AbstractSelectableChannel {
    static {
        UnsupportedOperatingSystemException.raise();
    }

    public static SctpServerChannel open() throws IOException {
        return null;
    }

    protected SctpServerChannel(SelectorProvider provider) {
        super(provider);
    }

    public abstract <T> T getOption(SctpSocketOption<T> name) throws IOException;
    public abstract <T> SctpServerChannel setOption(SctpSocketOption<T> name, T value) throws IOException;

    public abstract Set<SocketAddress> getAllLocalAddresses() throws IOException;

    public abstract SctpServerChannel bind(SocketAddress local) throws IOException;
    public abstract SctpServerChannel bind(SocketAddress local, int backlog) throws IOException;

    public abstract SctpServerChannel bindAddress(InetAddress inetAddress) throws IOException;
    public abstract SctpServerChannel unbindAddress(InetAddress inetAddress) throws IOException;

    public abstract SctpChannel accept() throws IOException;
}

Frequently Asked Questions

What is the SctpServerChannel class?
SctpServerChannel is a class in the netty codebase, defined in transport-sctp/src/main/java/com/sun/nio/sctp/SctpServerChannel.java.
Where is SctpServerChannel defined?
SctpServerChannel is defined in transport-sctp/src/main/java/com/sun/nio/sctp/SctpServerChannel.java at line 25.

Analyze Your Own Codebase

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

Try Supermodel Free