Uses of Class
com.sun.nio.sctp.SctpServerChannel
-
Packages that use SctpServerChannel 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 SctpServerChannel in com.sun.nio.sctp
Methods in com.sun.nio.sctp that return SctpServerChannel Modifier and Type Method Description abstract SctpServerChannelSctpServerChannel. bind(java.net.SocketAddress local)abstract SctpServerChannelSctpServerChannel. bind(java.net.SocketAddress local, int backlog)abstract SctpServerChannelSctpServerChannel. bindAddress(java.net.InetAddress inetAddress)static SctpServerChannelSctpServerChannel. open()abstract <T> SctpServerChannelSctpServerChannel. setOption(SctpSocketOption<T> name, T value)abstract SctpServerChannelSctpServerChannel. unbindAddress(java.net.InetAddress inetAddress) -
Uses of SctpServerChannel in io.netty.channel.sctp
Fields in io.netty.channel.sctp declared as SctpServerChannel Modifier and Type Field Description private SctpServerChannelDefaultSctpServerChannelConfig. javaChannelConstructors in io.netty.channel.sctp with parameters of type SctpServerChannel Constructor Description DefaultSctpServerChannelConfig(SctpServerChannel channel, SctpServerChannel javaChannel)Creates a new instance. -
Uses of SctpServerChannel in io.netty.channel.sctp.nio
Methods in io.netty.channel.sctp.nio that return SctpServerChannel Modifier and Type Method Description protected SctpServerChannelNioSctpServerChannel. javaChannel()private static SctpServerChannelNioSctpServerChannel. newSocket()Constructors in io.netty.channel.sctp.nio with parameters of type SctpServerChannel Constructor Description NioSctpServerChannelConfig(NioSctpServerChannel channel, SctpServerChannel javaChannel) -
Uses of SctpServerChannel in io.netty.channel.sctp.oio
Fields in io.netty.channel.sctp.oio declared as SctpServerChannel Modifier and Type Field Description private SctpServerChannelOioSctpServerChannel. schDeprecated.Methods in io.netty.channel.sctp.oio that return SctpServerChannel Modifier and Type Method Description private static SctpServerChannelOioSctpServerChannel. newServerSocket()Deprecated.Constructors in io.netty.channel.sctp.oio with parameters of type SctpServerChannel Constructor Description OioSctpServerChannel(SctpServerChannel sch)Deprecated.Create a new instance from the givenSctpServerChannelOioSctpServerChannelConfig(OioSctpServerChannel channel, SctpServerChannel javaChannel)
-