程序包 | 说明 |
---|---|
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.
|
限定符和类型 | 方法和说明 |
---|---|
static MessageInfo |
MessageInfo.createOutgoing(Association association,
java.net.SocketAddress address,
int streamNumber) |
abstract MessageInfo |
MessageInfo.payloadProtocolID(int ppid) |
abstract <T> MessageInfo |
SctpChannel.receive(java.nio.ByteBuffer dst,
T attachment,
NotificationHandler<T> handler) |
abstract MessageInfo |
MessageInfo.streamNumber(int streamNumber) |
abstract MessageInfo |
MessageInfo.unordered(boolean b) |
限定符和类型 | 方法和说明 |
---|---|
abstract int |
SctpChannel.send(java.nio.ByteBuffer src,
MessageInfo messageInfo) |
限定符和类型 | 方法和说明 |
---|---|
MessageInfo |
SctpMessage.messageInfo()
Return the
MessageInfo for inbound messages or null for
outbound messages. |
构造器和说明 |
---|
SctpMessage(MessageInfo msgInfo,
ByteBuf payloadBuffer)
Essential data that is being carried within SCTP Data Chunk
|