Uses of Interface
io.netty.channel.sctp.SctpChannelConfig
-
Packages that use SctpChannelConfig 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). -
-
Uses of SctpChannelConfig in io.netty.channel.sctp
Classes in io.netty.channel.sctp that implement SctpChannelConfig Modifier and Type Class Description class
DefaultSctpChannelConfig
The defaultSctpChannelConfig
implementation for SCTP.Methods in io.netty.channel.sctp that return SctpChannelConfig Modifier and Type Method Description SctpChannelConfig
SctpChannel. config()
Returns theSctpChannelConfig
configuration of the channel.SctpChannelConfig
DefaultSctpChannelConfig. setAllocator(ByteBufAllocator allocator)
SctpChannelConfig
SctpChannelConfig. setAllocator(ByteBufAllocator allocator)
SctpChannelConfig
DefaultSctpChannelConfig. setAutoClose(boolean autoClose)
SctpChannelConfig
SctpChannelConfig. setAutoClose(boolean autoClose)
SctpChannelConfig
DefaultSctpChannelConfig. setAutoRead(boolean autoRead)
SctpChannelConfig
SctpChannelConfig. setAutoRead(boolean autoRead)
SctpChannelConfig
DefaultSctpChannelConfig. setConnectTimeoutMillis(int connectTimeoutMillis)
SctpChannelConfig
SctpChannelConfig. setConnectTimeoutMillis(int connectTimeoutMillis)
SctpChannelConfig
DefaultSctpChannelConfig. setInitMaxStreams(com.sun.nio.sctp.SctpStandardSocketOptions.InitMaxStreams initMaxStreams)
SctpChannelConfig
SctpChannelConfig. setInitMaxStreams(com.sun.nio.sctp.SctpStandardSocketOptions.InitMaxStreams initMaxStreams)
Gets theSCTP_INIT_MAXSTREAMS
option.SctpChannelConfig
DefaultSctpChannelConfig. setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.SctpChannelConfig
SctpChannelConfig. setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.SctpChannelConfig
DefaultSctpChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)
SctpChannelConfig
SctpChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)
SctpChannelConfig
DefaultSctpChannelConfig. setReceiveBufferSize(int receiveBufferSize)
SctpChannelConfig
SctpChannelConfig. setReceiveBufferSize(int receiveBufferSize)
Gets theSO_RCVBUF
option.SctpChannelConfig
DefaultSctpChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SctpChannelConfig
SctpChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SctpChannelConfig
DefaultSctpChannelConfig. setSctpNoDelay(boolean sctpNoDelay)
SctpChannelConfig
SctpChannelConfig. setSctpNoDelay(boolean sctpNoDelay)
Sets theSCTP_NODELAY
option.SctpChannelConfig
DefaultSctpChannelConfig. setSendBufferSize(int sendBufferSize)
SctpChannelConfig
SctpChannelConfig. setSendBufferSize(int sendBufferSize)
Sets theSO_SNDBUF
option.SctpChannelConfig
DefaultSctpChannelConfig. setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
SctpChannelConfig
SctpChannelConfig. setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
SctpChannelConfig
DefaultSctpChannelConfig. setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
SctpChannelConfig
SctpChannelConfig. setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
SctpChannelConfig
DefaultSctpChannelConfig. setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
SctpChannelConfig
SctpChannelConfig. setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
SctpChannelConfig
DefaultSctpChannelConfig. setWriteSpinCount(int writeSpinCount)
SctpChannelConfig
SctpChannelConfig. setWriteSpinCount(int writeSpinCount)
-
Uses of SctpChannelConfig in io.netty.channel.sctp.nio
Methods in io.netty.channel.sctp.nio that return SctpChannelConfig Modifier and Type Method Description SctpChannelConfig
NioSctpChannel. config()
-
Uses of SctpChannelConfig in io.netty.channel.sctp.oio
Methods in io.netty.channel.sctp.oio that return SctpChannelConfig Modifier and Type Method Description SctpChannelConfig
OioSctpChannel. config()
Deprecated.
-