| 程序包 | 说明 | 
|---|---|
| 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). 
 | 
| 构造器和说明 | 
|---|
DefaultSctpChannelConfig(SctpChannel channel,
                        SctpChannel javaChannel)  | 
SctpNotificationHandler(SctpChannel sctpChannel)  | 
| 限定符和类型 | 类和说明 | 
|---|---|
class  | 
NioSctpChannel
SctpChannel implementation which use non-blocking mode and allows to read /
 write SctpMessages to the underlying SctpChannel. | 
| 限定符和类型 | 类和说明 | 
|---|---|
class  | 
OioSctpChannel
已过时。 
 
use  
NioSctpChannel. |