| 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 SctpChannel |
SctpServerChannel.accept() |
abstract SctpChannel |
SctpChannel.bind(SocketAddress local) |
abstract SctpChannel |
SctpChannel.bindAddress(InetAddress inetAddress) |
static SctpChannel |
SctpChannel.open() |
abstract <T> SctpChannel |
SctpChannel.setOption(SctpSocketOption<T> name,
T value) |
abstract SctpChannel |
SctpChannel.unbindAddress(InetAddress inetAddress) |
| Constructor and Description |
|---|
DefaultSctpChannelConfig(SctpChannel channel) |
| Modifier and Type | Method and Description |
|---|---|
protected SctpChannel |
NioSctpChannel.javaChannel() |
| Constructor and Description |
|---|
NioSctpChannel(Channel parent,
Integer id,
SctpChannel sctpChannel) |
NioSctpChannel(SctpChannel sctpChannel) |
| Constructor and Description |
|---|
OioSctpChannel(Channel parent,
Integer id,
SctpChannel ch) |
OioSctpChannel(SctpChannel ch) |
Copyright © 2008-2012 The Netty Project. All Rights Reserved.