程序包 | 说明 |
---|---|
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).
|
限定符和类型 | 方法和说明 |
---|---|
abstract SctpServerChannel |
SctpServerChannel.bind(java.net.SocketAddress local) |
abstract SctpServerChannel |
SctpServerChannel.bind(java.net.SocketAddress local,
int backlog) |
abstract SctpServerChannel |
SctpServerChannel.bindAddress(java.net.InetAddress inetAddress) |
static SctpServerChannel |
SctpServerChannel.open() |
abstract <T> SctpServerChannel |
SctpServerChannel.setOption(SctpSocketOption<T> name,
T value) |
abstract SctpServerChannel |
SctpServerChannel.unbindAddress(java.net.InetAddress inetAddress) |
构造器和说明 |
---|
DefaultSctpServerChannelConfig(SctpServerChannel channel,
SctpServerChannel javaChannel)
Creates a new instance.
|
限定符和类型 | 方法和说明 |
---|---|
protected SctpServerChannel |
NioSctpServerChannel.javaChannel() |
构造器和说明 |
---|
OioSctpServerChannel(SctpServerChannel sch)
已过时。
Create a new instance from the given
SctpServerChannel |