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 SctpServerChannelSctpChannel. 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 classNioSctpServerChannelSctpServerChannelimplementation which use non-blocking mode to accept new connections and create theNioSctpChannelfor them.Methods in io.netty.channel.sctp.nio that return SctpServerChannel Modifier and Type Method Description SctpServerChannelNioSctpChannel. 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 classOioSctpServerChannelDeprecated.useNioSctpServerChannel.Methods in io.netty.channel.sctp.oio that return SctpServerChannel Modifier and Type Method Description SctpServerChannelOioSctpChannel. parent()Deprecated.
-