Uses of Class
com.sun.nio.sctp.SctpChannel
-
Packages that use SctpChannel 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 SctpChannel in com.sun.nio.sctp
Methods in com.sun.nio.sctp that return SctpChannel Modifier and Type Method Description abstract SctpChannel
SctpServerChannel. accept()
abstract SctpChannel
SctpChannel. bind(java.net.SocketAddress local)
abstract SctpChannel
SctpChannel. bindAddress(java.net.InetAddress inetAddress)
static SctpChannel
SctpChannel. open()
abstract <T> SctpChannel
SctpChannel. setOption(SctpSocketOption<T> name, T value)
abstract SctpChannel
SctpChannel. unbindAddress(java.net.InetAddress inetAddress)
-
Uses of SctpChannel in io.netty.channel.sctp
Fields in io.netty.channel.sctp declared as SctpChannel Modifier and Type Field Description private SctpChannel
DefaultSctpChannelConfig. javaChannel
Constructors in io.netty.channel.sctp with parameters of type SctpChannel Constructor Description DefaultSctpChannelConfig(SctpChannel channel, SctpChannel javaChannel)
-
Uses of SctpChannel in io.netty.channel.sctp.nio
Methods in io.netty.channel.sctp.nio that return SctpChannel Modifier and Type Method Description protected SctpChannel
NioSctpChannel. javaChannel()
private static SctpChannel
NioSctpChannel. newSctpChannel()
Constructors in io.netty.channel.sctp.nio with parameters of type SctpChannel Constructor Description NioSctpChannel(SctpChannel sctpChannel)
Create a new instance usingSctpChannel
NioSctpChannel(Channel parent, SctpChannel sctpChannel)
Create a new instanceNioSctpChannelConfig(NioSctpChannel channel, SctpChannel javaChannel)
-
Uses of SctpChannel in io.netty.channel.sctp.oio
Fields in io.netty.channel.sctp.oio declared as SctpChannel Modifier and Type Field Description private SctpChannel
OioSctpChannel. ch
Deprecated.Methods in io.netty.channel.sctp.oio that return SctpChannel Modifier and Type Method Description private static SctpChannel
OioSctpChannel. openChannel()
Deprecated.Constructors in io.netty.channel.sctp.oio with parameters of type SctpChannel Constructor Description OioSctpChannel(SctpChannel ch)
Deprecated.Create a new instance from the givenSctpChannel
.OioSctpChannel(Channel parent, SctpChannel ch)
Deprecated.Create a new instance from the givenSctpChannel
.OioSctpChannelConfig(OioSctpChannel channel, SctpChannel javaChannel)
-