@Deprecated public class DefaultUdtServerChannelConfig extends DefaultUdtChannelConfig implements UdtServerChannelConfig
UdtServerChannelConfig
implementation.channel
构造器和说明 |
---|
DefaultUdtServerChannelConfig(UdtChannel channel,
ChannelUDT channelUDT,
boolean apply)
已过时。
|
限定符和类型 | 方法和说明 |
---|---|
protected void |
apply(ChannelUDT channelUDT)
已过时。
|
int |
getBacklog()
已过时。
Gets
KindUDT#ACCEPTOR channel backlog via
ChannelOption.SO_BACKLOG . |
<T> T |
getOption(ChannelOption<T> option)
已过时。
Return the value of the given
ChannelOption |
java.util.Map<ChannelOption<?>,java.lang.Object> |
getOptions()
已过时。
Return all set
ChannelOption 's. |
UdtServerChannelConfig |
setAllocator(ByteBufAllocator allocator)
已过时。
Set the
ByteBufAllocator which is used for the channel
to allocate buffers. |
UdtServerChannelConfig |
setAutoClose(boolean autoClose)
已过时。
|
UdtServerChannelConfig |
setAutoRead(boolean autoRead)
已过时。
Sets if
ChannelHandlerContext.read() will be invoked automatically so that a user application doesn't
need to call it at all. |
UdtServerChannelConfig |
setBacklog(int backlog)
已过时。
Sets
KindUDT#ACCEPTOR channel backlog via
ChannelOption.SO_BACKLOG . |
UdtServerChannelConfig |
setConnectTimeoutMillis(int connectTimeoutMillis)
已过时。
Sets the connect timeout of the channel in milliseconds.
|
UdtServerChannelConfig |
setMaxMessagesPerRead(int maxMessagesPerRead)
已过时。
Sets the maximum number of messages to read per read loop.
|
UdtServerChannelConfig |
setMessageSizeEstimator(MessageSizeEstimator estimator)
已过时。
Set the
MessageSizeEstimator which is used for the channel
to detect the size of a message. |
<T> boolean |
setOption(ChannelOption<T> option,
T value)
已过时。
Sets a configuration property with the specified name and value.
|
UdtServerChannelConfig |
setProtocolReceiveBufferSize(int protocolReceiveBufferSize)
已过时。
Sets
OptionUDT#Protocol_Receive_Buffer_Size |
UdtServerChannelConfig |
setProtocolSendBufferSize(int protocolSendBufferSize)
已过时。
Sets
OptionUDT#Protocol_Send_Buffer_Size |
UdtServerChannelConfig |
setReceiveBufferSize(int receiveBufferSize)
已过时。
Sets the
ChannelOption.SO_RCVBUF option. |
UdtServerChannelConfig |
setRecvByteBufAllocator(RecvByteBufAllocator allocator)
已过时。
Set the
ByteBufAllocator which is used for the channel
to allocate receive buffers. |
UdtServerChannelConfig |
setReuseAddress(boolean reuseAddress)
已过时。
Sets the
ChannelOption.SO_REUSEADDR option. |
UdtServerChannelConfig |
setSendBufferSize(int sendBufferSize)
已过时。
Sets the
ChannelOption.SO_SNDBUF option. |
UdtServerChannelConfig |
setSoLinger(int soLinger)
已过时。
Sets the
ChannelOption.SO_LINGER option. |
UdtServerChannelConfig |
setSystemReceiveBufferSize(int systemSendBufferSize)
已过时。
Sets
OptionUDT#System_Receive_Buffer_Size |
UdtServerChannelConfig |
setSystemSendBufferSize(int systemReceiveBufferSize)
已过时。
Sets
OptionUDT#System_Send_Buffer_Size |
UdtServerChannelConfig |
setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
已过时。
Sets the high water mark of the write buffer.
|
UdtServerChannelConfig |
setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
已过时。
Sets the low water mark of the write buffer.
|
UdtServerChannelConfig |
setWriteSpinCount(int writeSpinCount)
已过时。
Sets the maximum loop count for a write operation until
WritableByteChannel.write(ByteBuffer) returns a non-zero value. |
getProtocolReceiveBufferSize, getProtocolSendBufferSize, getReceiveBufferSize, getSendBufferSize, getSoLinger, getSystemReceiveBufferSize, getSystemSendBufferSize, isReuseAddress
autoReadCleared, getAllocator, getConnectTimeoutMillis, getMaxMessagesPerRead, getMessageSizeEstimator, getOptions, getRecvByteBufAllocator, getWriteBufferHighWaterMark, getWriteBufferLowWaterMark, getWriteSpinCount, isAutoClose, isAutoRead, setOptions, validate
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getProtocolReceiveBufferSize, getProtocolSendBufferSize, getReceiveBufferSize, getSendBufferSize, getSoLinger, getSystemReceiveBufferSize, getSystemSendBufferSize, isReuseAddress
public DefaultUdtServerChannelConfig(UdtChannel channel, ChannelUDT channelUDT, boolean apply) throws java.io.IOException
java.io.IOException
protected void apply(ChannelUDT channelUDT) throws java.io.IOException
apply
在类中 DefaultUdtChannelConfig
java.io.IOException
public int getBacklog()
UdtServerChannelConfig
KindUDT#ACCEPTOR
channel backlog via
ChannelOption.SO_BACKLOG
.getBacklog
在接口中 UdtServerChannelConfig
public <T> T getOption(ChannelOption<T> option)
ChannelConfig
ChannelOption
getOption
在接口中 ChannelConfig
getOption
在类中 DefaultUdtChannelConfig
public java.util.Map<ChannelOption<?>,java.lang.Object> getOptions()
ChannelConfig
ChannelOption
's.getOptions
在接口中 ChannelConfig
getOptions
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setBacklog(int backlog)
UdtServerChannelConfig
KindUDT#ACCEPTOR
channel backlog via
ChannelOption.SO_BACKLOG
.setBacklog
在接口中 UdtServerChannelConfig
public <T> boolean setOption(ChannelOption<T> option, T value)
ChannelConfig
public boolean setOption(ChannelOption<T> option, T value) { if (super.setOption(option, value)) { return true; } if (option.equals(additionalOption)) { .... return true; } return false; }
setOption
在接口中 ChannelConfig
setOption
在类中 DefaultUdtChannelConfig
true
if and only if the property has been setpublic UdtServerChannelConfig setProtocolReceiveBufferSize(int protocolReceiveBufferSize)
UdtChannelConfig
OptionUDT#Protocol_Receive_Buffer_Size
public UdtServerChannelConfig setProtocolSendBufferSize(int protocolSendBufferSize)
UdtChannelConfig
OptionUDT#Protocol_Send_Buffer_Size
public UdtServerChannelConfig setReceiveBufferSize(int receiveBufferSize)
UdtChannelConfig
ChannelOption.SO_RCVBUF
option.setReceiveBufferSize
在接口中 UdtChannelConfig
setReceiveBufferSize
在接口中 UdtServerChannelConfig
setReceiveBufferSize
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setReuseAddress(boolean reuseAddress)
UdtChannelConfig
ChannelOption.SO_REUSEADDR
option.setReuseAddress
在接口中 UdtChannelConfig
setReuseAddress
在接口中 UdtServerChannelConfig
setReuseAddress
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setSendBufferSize(int sendBufferSize)
UdtChannelConfig
ChannelOption.SO_SNDBUF
option.setSendBufferSize
在接口中 UdtChannelConfig
setSendBufferSize
在接口中 UdtServerChannelConfig
setSendBufferSize
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setSoLinger(int soLinger)
UdtChannelConfig
ChannelOption.SO_LINGER
option.setSoLinger
在接口中 UdtChannelConfig
setSoLinger
在接口中 UdtServerChannelConfig
setSoLinger
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setSystemReceiveBufferSize(int systemSendBufferSize)
UdtChannelConfig
OptionUDT#System_Receive_Buffer_Size
public UdtServerChannelConfig setSystemSendBufferSize(int systemReceiveBufferSize)
UdtChannelConfig
OptionUDT#System_Send_Buffer_Size
setSystemSendBufferSize
在接口中 UdtChannelConfig
setSystemSendBufferSize
在接口中 UdtServerChannelConfig
setSystemSendBufferSize
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setConnectTimeoutMillis(int connectTimeoutMillis)
ChannelConfig
Channel
does not support connect operation, this property is not
used at all, and therefore will be ignored.setConnectTimeoutMillis
在接口中 ChannelConfig
setConnectTimeoutMillis
在接口中 UdtChannelConfig
setConnectTimeoutMillis
在接口中 UdtServerChannelConfig
setConnectTimeoutMillis
在类中 DefaultUdtChannelConfig
connectTimeoutMillis
- the connect timeout in milliseconds.
0
to disable.public UdtServerChannelConfig setMaxMessagesPerRead(int maxMessagesPerRead)
ChannelConfig
setMaxMessagesPerRead
在接口中 ChannelConfig
setMaxMessagesPerRead
在接口中 UdtChannelConfig
setMaxMessagesPerRead
在接口中 UdtServerChannelConfig
setMaxMessagesPerRead
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setWriteSpinCount(int writeSpinCount)
ChannelConfig
WritableByteChannel.write(ByteBuffer)
returns a non-zero value.
It is similar to what a spin lock is used for in concurrency programming.
It improves memory utilization and write throughput depending on
the platform that JVM runs on. The default value is 16
.setWriteSpinCount
在接口中 ChannelConfig
setWriteSpinCount
在接口中 UdtChannelConfig
setWriteSpinCount
在接口中 UdtServerChannelConfig
setWriteSpinCount
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setAllocator(ByteBufAllocator allocator)
ChannelConfig
ByteBufAllocator
which is used for the channel
to allocate buffers.setAllocator
在接口中 ChannelConfig
setAllocator
在接口中 UdtChannelConfig
setAllocator
在接口中 UdtServerChannelConfig
setAllocator
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ChannelConfig
ByteBufAllocator
which is used for the channel
to allocate receive buffers.setRecvByteBufAllocator
在接口中 ChannelConfig
setRecvByteBufAllocator
在接口中 UdtChannelConfig
setRecvByteBufAllocator
在接口中 UdtServerChannelConfig
setRecvByteBufAllocator
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setAutoRead(boolean autoRead)
ChannelConfig
ChannelHandlerContext.read()
will be invoked automatically so that a user application doesn't
need to call it at all. The default value is true
.setAutoRead
在接口中 ChannelConfig
setAutoRead
在接口中 UdtChannelConfig
setAutoRead
在接口中 UdtServerChannelConfig
setAutoRead
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setAutoClose(boolean autoClose)
setAutoClose
在接口中 ChannelConfig
setAutoClose
在接口中 UdtChannelConfig
setAutoClose
在接口中 UdtServerChannelConfig
setAutoClose
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
ChannelConfig
Channel.isWritable()
will start to return
true
again.setWriteBufferLowWaterMark
在接口中 ChannelConfig
setWriteBufferLowWaterMark
在接口中 UdtChannelConfig
setWriteBufferLowWaterMark
在接口中 UdtServerChannelConfig
setWriteBufferLowWaterMark
在类中 DefaultUdtChannelConfig
public UdtServerChannelConfig setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
ChannelConfig
Channel.isWritable()
will start to return false
.public UdtServerChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator)
ChannelConfig
MessageSizeEstimator
which is used for the channel
to detect the size of a message.setMessageSizeEstimator
在接口中 ChannelConfig
setMessageSizeEstimator
在接口中 UdtChannelConfig
setMessageSizeEstimator
在接口中 UdtServerChannelConfig
setMessageSizeEstimator
在类中 DefaultUdtChannelConfig