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).
|
Constructor and Description |
---|
DefaultSctpChannelConfig(SctpChannel channel,
com.sun.nio.sctp.SctpChannel javaChannel) |
SctpNotificationHandler(SctpChannel sctpChannel) |
Modifier and Type | Class and Description |
---|---|
class |
NioSctpChannel
SctpChannel implementation which use non-blocking mode and allows to read /
write SctpMessage s to the underlying SctpChannel . |
Modifier and Type | Class and Description |
---|---|
class |
OioSctpChannel
Deprecated.
use
NioSctpChannel . |
Copyright © 2008–2024 The Netty Project. All rights reserved.