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 |
NioSctpServerChannel
SctpServerChannel implementation which use non-blocking mode to accept new
connections and create the NioSctpChannel for them. |
Modifier and Type | Method and Description |
---|---|
SctpServerChannel |
NioSctpChannel.parent() |
Modifier and Type | Class and Description |
---|---|
class |
OioSctpServerChannel
SctpServerChannel implementation which use blocking mode to accept new
connections and create the OioSctpChannel for them. |
Modifier and Type | Method and Description |
---|---|
SctpServerChannel |
OioSctpChannel.parent() |
Copyright © 2008–2017 The Netty Project. All rights reserved.