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 SctpChannelSctpServerChannel. accept()abstract SctpChannelSctpChannel. bind(java.net.SocketAddress local)abstract SctpChannelSctpChannel. bindAddress(java.net.InetAddress inetAddress)static SctpChannelSctpChannel. open()abstract <T> SctpChannelSctpChannel. setOption(SctpSocketOption<T> name, T value)abstract SctpChannelSctpChannel. 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 SctpChannelDefaultSctpChannelConfig. javaChannelConstructors 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 SctpChannelNioSctpChannel. javaChannel()private static SctpChannelNioSctpChannel. newSctpChannel()Constructors in io.netty.channel.sctp.nio with parameters of type SctpChannel Constructor Description NioSctpChannel(SctpChannel sctpChannel)Create a new instance usingSctpChannelNioSctpChannel(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 SctpChannelOioSctpChannel. chDeprecated.Methods in io.netty.channel.sctp.oio that return SctpChannel Modifier and Type Method Description private static SctpChannelOioSctpChannel. 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)
-