| 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).
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractNotificationHandler<T> |
| Modifier and Type | Method and Description |
|---|---|
abstract <T> MessageInfo |
SctpChannel.receive(java.nio.ByteBuffer dst,
T attachment,
NotificationHandler<T> handler) |
| Modifier and Type | Class and Description |
|---|---|
class |
SctpNotificationHandler
AbstractNotificationHandler implementation which will handle all Notifications by trigger a
Notification user event in the ChannelPipeline of a SctpChannel. |
| Modifier and Type | Field and Description |
|---|---|
private NotificationHandler<?> |
NioSctpChannel.notificationHandler |
| Modifier and Type | Field and Description |
|---|---|
private NotificationHandler<?> |
OioSctpChannel.notificationHandler |