Uses of Interface
io.netty.channel.sctp.SctpServerChannelConfig
-
Packages that use SctpServerChannelConfig 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 SctpServerChannelConfig in io.netty.channel.sctp
Classes in io.netty.channel.sctp that implement SctpServerChannelConfig Modifier and Type Class Description class
DefaultSctpServerChannelConfig
The defaultSctpServerChannelConfig
implementation for SCTP.Methods in io.netty.channel.sctp that return SctpServerChannelConfig Modifier and Type Method Description SctpServerChannelConfig
SctpServerChannel. config()
Returns theSctpServerChannelConfig
configuration of the channel.SctpServerChannelConfig
DefaultSctpServerChannelConfig. setAllocator(ByteBufAllocator allocator)
SctpServerChannelConfig
SctpServerChannelConfig. setAllocator(ByteBufAllocator allocator)
SctpServerChannelConfig
DefaultSctpServerChannelConfig. setAutoClose(boolean autoClose)
SctpServerChannelConfig
SctpServerChannelConfig. setAutoClose(boolean autoClose)
SctpServerChannelConfig
DefaultSctpServerChannelConfig. setAutoRead(boolean autoRead)
SctpServerChannelConfig
SctpServerChannelConfig. setAutoRead(boolean autoRead)
SctpServerChannelConfig
DefaultSctpServerChannelConfig. setBacklog(int backlog)
SctpServerChannelConfig
SctpServerChannelConfig. setBacklog(int backlog)
Sets the backlog value to specify when the channel binds to a local address.SctpServerChannelConfig
DefaultSctpServerChannelConfig. setConnectTimeoutMillis(int connectTimeoutMillis)
SctpServerChannelConfig
SctpServerChannelConfig. setConnectTimeoutMillis(int connectTimeoutMillis)
SctpServerChannelConfig
DefaultSctpServerChannelConfig. setInitMaxStreams(com.sun.nio.sctp.SctpStandardSocketOptions.InitMaxStreams initMaxStreams)
SctpServerChannelConfig
SctpServerChannelConfig. setInitMaxStreams(com.sun.nio.sctp.SctpStandardSocketOptions.InitMaxStreams initMaxStreams)
Gets theSCTP_INIT_MAXSTREAMS
option.SctpServerChannelConfig
DefaultSctpServerChannelConfig. setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.SctpServerChannelConfig
SctpServerChannelConfig. setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.SctpServerChannelConfig
DefaultSctpServerChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)
SctpServerChannelConfig
SctpServerChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)
SctpServerChannelConfig
DefaultSctpServerChannelConfig. setReceiveBufferSize(int receiveBufferSize)
SctpServerChannelConfig
SctpServerChannelConfig. setReceiveBufferSize(int receiveBufferSize)
Gets theSO_RCVBUF
option.SctpServerChannelConfig
DefaultSctpServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SctpServerChannelConfig
SctpServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SctpServerChannelConfig
DefaultSctpServerChannelConfig. setSendBufferSize(int sendBufferSize)
SctpServerChannelConfig
SctpServerChannelConfig. setSendBufferSize(int sendBufferSize)
Sets theSO_SNDBUF
option.SctpServerChannelConfig
DefaultSctpServerChannelConfig. setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
SctpServerChannelConfig
SctpServerChannelConfig. setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
SctpServerChannelConfig
DefaultSctpServerChannelConfig. setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
SctpServerChannelConfig
SctpServerChannelConfig. setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
SctpServerChannelConfig
DefaultSctpServerChannelConfig. setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
SctpServerChannelConfig
SctpServerChannelConfig. setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
SctpServerChannelConfig
DefaultSctpServerChannelConfig. setWriteSpinCount(int writeSpinCount)
SctpServerChannelConfig
SctpServerChannelConfig. setWriteSpinCount(int writeSpinCount)
-
Uses of SctpServerChannelConfig in io.netty.channel.sctp.nio
Methods in io.netty.channel.sctp.nio that return SctpServerChannelConfig Modifier and Type Method Description SctpServerChannelConfig
NioSctpServerChannel. config()
-
Uses of SctpServerChannelConfig in io.netty.channel.sctp.oio
Methods in io.netty.channel.sctp.oio that return SctpServerChannelConfig Modifier and Type Method Description SctpServerChannelConfig
OioSctpServerChannel. config()
Deprecated.
-