| Package | Description |
|---|---|
| com.sun.nio.sctp |
This package is only included to let SCTP also compile on non-unix operation systems.
|
| io.netty.channel.socket |
Abstract TCP and UDP socket interfaces which extend the core channel API.
|
| io.netty.channel.socket.nio |
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
| io.netty.channel.socket.oio |
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
|
| Modifier and Type | Method and Description |
|---|---|
abstract Association |
SctpChannel.association() |
Association |
Notification.association() |
| Modifier and Type | Method and Description |
|---|---|
static MessageInfo |
MessageInfo.createOutgoing(Association association,
SocketAddress address,
int streamNumber) |
| Modifier and Type | Method and Description |
|---|---|
Association |
SctpChannel.association()
Returns the underlying SCTP association.
|
| Modifier and Type | Method and Description |
|---|---|
Association |
NioSctpChannel.association() |
| Modifier and Type | Method and Description |
|---|---|
Association |
OioSctpChannel.association() |
Copyright © 2008-2012 The Netty Project. All Rights Reserved.