| Package | Description | 
|---|---|
| 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). | 
| Modifier and Type | Method and Description | 
|---|---|
| SctpServerChannel | SctpChannel. parent() | 
| Constructor and Description | 
|---|
| DefaultSctpServerChannelConfig(SctpServerChannel channel,
                              com.sun.nio.sctp.SctpServerChannel javaChannel)Creates a new instance. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | NioSctpServerChannelSctpServerChannelimplementation which use non-blocking mode to accept new
 connections and create theNioSctpChannelfor them. | 
| Modifier and Type | Method and Description | 
|---|---|
| SctpServerChannel | NioSctpChannel. parent() | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | OioSctpServerChannelSctpServerChannelimplementation which use blocking mode to accept new
 connections and create theOioSctpChannelfor them. | 
| Modifier and Type | Method and Description | 
|---|---|
| SctpServerChannel | OioSctpChannel. parent() | 
Copyright © 2008–2015 The Netty Project. All rights reserved.