Uses of Interface
io.netty.channel.sctp.SctpServerChannel
-
Packages that use SctpServerChannel Package Description 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 io.netty.channel.sctp
Methods in io.netty.channel.sctp that return SctpServerChannel Modifier and Type Method Description SctpServerChannel
SctpChannel. parent()
Constructors in io.netty.channel.sctp with parameters of type SctpServerChannel Constructor Description DefaultSctpServerChannelConfig(SctpServerChannel channel, com.sun.nio.sctp.SctpServerChannel javaChannel)
Creates a new instance. -
Uses of SctpServerChannel in io.netty.channel.sctp.nio
Classes in io.netty.channel.sctp.nio that implement SctpServerChannel Modifier and Type Class Description class
NioSctpServerChannel
SctpServerChannel
implementation which use non-blocking mode to accept new connections and create theNioSctpChannel
for them.Methods in io.netty.channel.sctp.nio that return SctpServerChannel Modifier and Type Method Description SctpServerChannel
NioSctpChannel. parent()
-
Uses of SctpServerChannel in io.netty.channel.sctp.oio
Classes in io.netty.channel.sctp.oio that implement SctpServerChannel Modifier and Type Class Description class
OioSctpServerChannel
Deprecated.useNioSctpServerChannel
.Methods in io.netty.channel.sctp.oio that return SctpServerChannel Modifier and Type Method Description SctpServerChannel
OioSctpChannel. parent()
Deprecated.
-