Uses of Class
com.sun.nio.sctp.MessageInfo
-
Packages that use MessageInfo Package Description 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. -
-
Uses of MessageInfo in com.sun.nio.sctp
Methods in com.sun.nio.sctp that return MessageInfo Modifier and Type Method Description 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)
Methods in com.sun.nio.sctp with parameters of type MessageInfo Modifier and Type Method Description abstract int
SctpChannel. send(java.nio.ByteBuffer src, MessageInfo messageInfo)
-
Uses of MessageInfo in io.netty.channel.sctp
Fields in io.netty.channel.sctp declared as MessageInfo Modifier and Type Field Description private MessageInfo
SctpMessage. msgInfo
Methods in io.netty.channel.sctp that return MessageInfo Modifier and Type Method Description MessageInfo
SctpMessage. messageInfo()
Return theMessageInfo
for inbound messages ornull
for outbound messages.Constructors in io.netty.channel.sctp with parameters of type MessageInfo Constructor Description SctpMessage(MessageInfo msgInfo, ByteBuf payloadBuffer)
Essential data that is being carried within SCTP Data Chunk
-