Uses of Interface
io.netty.channel.sctp.SctpChannel
-
Packages that use SctpChannel 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 SctpChannel in io.netty.channel.sctp
Fields in io.netty.channel.sctp declared as SctpChannel Modifier and Type Field Description private SctpChannel
SctpNotificationHandler. sctpChannel
Constructors in io.netty.channel.sctp with parameters of type SctpChannel Constructor Description DefaultSctpChannelConfig(SctpChannel channel, SctpChannel javaChannel)
SctpNotificationHandler(SctpChannel sctpChannel)
-
Uses of SctpChannel in io.netty.channel.sctp.nio
Classes in io.netty.channel.sctp.nio that implement SctpChannel Modifier and Type Class Description class
NioSctpChannel
SctpChannel
implementation which use non-blocking mode and allows to read / writeSctpMessage
s to the underlyingSctpChannel
. -
Uses of SctpChannel in io.netty.channel.sctp.oio
Classes in io.netty.channel.sctp.oio that implement SctpChannel Modifier and Type Class Description class
OioSctpChannel
Deprecated.useNioSctpChannel
.
-