Uses of Class
com.sun.nio.sctp.SctpServerChannel
-
Packages that use SctpServerChannel Package Description com.sun.nio.sctp This package is only included to let SCTP also compile on non-unix operation systems.io.netty.channel.sctp Abstract SCTP socket interfaces which extend the core channel API.io.netty.channel.sctp.nio NIO-based SCTP Channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.sctp.oio Old blocking I/O based SCTP channel API implementation - recommended for a small number of connections (< 1000). -
-
Uses of SctpServerChannel in com.sun.nio.sctp
Methods in com.sun.nio.sctp that return SctpServerChannel Modifier and Type Method Description abstract SctpServerChannel
SctpServerChannel. bind(java.net.SocketAddress local)
abstract SctpServerChannel
SctpServerChannel. bind(java.net.SocketAddress local, int backlog)
abstract SctpServerChannel
SctpServerChannel. bindAddress(java.net.InetAddress inetAddress)
static SctpServerChannel
SctpServerChannel. open()
abstract <T> SctpServerChannel
SctpServerChannel. setOption(SctpSocketOption<T> name, T value)
abstract SctpServerChannel
SctpServerChannel. unbindAddress(java.net.InetAddress inetAddress)
-
Uses of SctpServerChannel in io.netty.channel.sctp
Fields in io.netty.channel.sctp declared as SctpServerChannel Modifier and Type Field Description private SctpServerChannel
DefaultSctpServerChannelConfig. javaChannel
Constructors in io.netty.channel.sctp with parameters of type SctpServerChannel Constructor Description DefaultSctpServerChannelConfig(SctpServerChannel channel, SctpServerChannel javaChannel)
Creates a new instance. -
Uses of SctpServerChannel in io.netty.channel.sctp.nio
Methods in io.netty.channel.sctp.nio that return SctpServerChannel Modifier and Type Method Description protected SctpServerChannel
NioSctpServerChannel. javaChannel()
private static SctpServerChannel
NioSctpServerChannel. newSocket()
Constructors in io.netty.channel.sctp.nio with parameters of type SctpServerChannel Constructor Description NioSctpServerChannelConfig(NioSctpServerChannel channel, SctpServerChannel javaChannel)
-
Uses of SctpServerChannel in io.netty.channel.sctp.oio
Fields in io.netty.channel.sctp.oio declared as SctpServerChannel Modifier and Type Field Description private SctpServerChannel
OioSctpServerChannel. sch
Deprecated.Methods in io.netty.channel.sctp.oio that return SctpServerChannel Modifier and Type Method Description private static SctpServerChannel
OioSctpServerChannel. newServerSocket()
Deprecated.Constructors in io.netty.channel.sctp.oio with parameters of type SctpServerChannel Constructor Description OioSctpServerChannel(SctpServerChannel sch)
Deprecated.Create a new instance from the givenSctpServerChannel
OioSctpServerChannelConfig(OioSctpServerChannel channel, SctpServerChannel javaChannel)
-