@Deprecated public interface UdtChannelConfig extends ChannelConfig
ChannelConfig for a UdtChannel.
ChannelConfig,
UdtChannelConfig allows the following options in the option map:
Note that TypeUDT#DATAGRAM message oriented channels treat
"receiveBufferSize" and "sendBufferSize" as maximum message
size. If received or sent message does not fit specified sizes,
ChannelException will be thrown.
| 限定符和类型 | 方法和说明 |
|---|---|
int |
getProtocolReceiveBufferSize()
已过时。
Gets
OptionUDT#Protocol_Receive_Buffer_Size |
int |
getProtocolSendBufferSize()
已过时。
Gets
OptionUDT#Protocol_Send_Buffer_Size |
int |
getReceiveBufferSize()
已过时。
Gets the
ChannelOption.SO_RCVBUF option. |
int |
getSendBufferSize()
已过时。
Gets the
ChannelOption.SO_SNDBUF option. |
int |
getSoLinger()
已过时。
Gets the
ChannelOption.SO_LINGER option. |
int |
getSystemReceiveBufferSize()
已过时。
Gets
OptionUDT#System_Receive_Buffer_Size |
int |
getSystemSendBufferSize()
已过时。
Gets
OptionUDT#System_Send_Buffer_Size |
boolean |
isReuseAddress()
已过时。
Gets the
ChannelOption.SO_REUSEADDR option. |
UdtChannelConfig |
setAllocator(ByteBufAllocator allocator)
已过时。
Set the
ByteBufAllocator which is used for the channel
to allocate buffers. |
UdtChannelConfig |
setAutoClose(boolean autoClose)
已过时。
|
UdtChannelConfig |
setAutoRead(boolean autoRead)
已过时。
Sets if
ChannelHandlerContext.read() will be invoked automatically so that a user application doesn't
need to call it at all. |
UdtChannelConfig |
setConnectTimeoutMillis(int connectTimeoutMillis)
已过时。
Sets the connect timeout of the channel in milliseconds.
|
UdtChannelConfig |
setMaxMessagesPerRead(int maxMessagesPerRead)
已过时。
Sets the maximum number of messages to read per read loop.
|
UdtChannelConfig |
setMessageSizeEstimator(MessageSizeEstimator estimator)
已过时。
Set the
MessageSizeEstimator which is used for the channel
to detect the size of a message. |
UdtChannelConfig |
setProtocolReceiveBufferSize(int size)
已过时。
Sets
OptionUDT#Protocol_Receive_Buffer_Size |
UdtChannelConfig |
setProtocolSendBufferSize(int size)
已过时。
Sets
OptionUDT#Protocol_Send_Buffer_Size |
UdtChannelConfig |
setReceiveBufferSize(int receiveBufferSize)
已过时。
Sets the
ChannelOption.SO_RCVBUF option. |
UdtChannelConfig |
setRecvByteBufAllocator(RecvByteBufAllocator allocator)
已过时。
Set the
ByteBufAllocator which is used for the channel
to allocate receive buffers. |
UdtChannelConfig |
setReuseAddress(boolean reuseAddress)
已过时。
Sets the
ChannelOption.SO_REUSEADDR option. |
UdtChannelConfig |
setSendBufferSize(int sendBufferSize)
已过时。
Sets the
ChannelOption.SO_SNDBUF option. |
UdtChannelConfig |
setSoLinger(int soLinger)
已过时。
Sets the
ChannelOption.SO_LINGER option. |
UdtChannelConfig |
setSystemReceiveBufferSize(int size)
已过时。
Sets
OptionUDT#System_Receive_Buffer_Size |
UdtChannelConfig |
setSystemSendBufferSize(int size)
已过时。
Sets
OptionUDT#System_Send_Buffer_Size |
UdtChannelConfig |
setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
已过时。
Sets the high water mark of the write buffer.
|
UdtChannelConfig |
setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
已过时。
Sets the low water mark of the write buffer.
|
UdtChannelConfig |
setWriteSpinCount(int writeSpinCount)
已过时。
Sets the maximum loop count for a write operation until
WritableByteChannel.write(ByteBuffer) returns a non-zero value. |
int getProtocolReceiveBufferSize()
OptionUDT#Protocol_Receive_Buffer_Sizeint getProtocolSendBufferSize()
OptionUDT#Protocol_Send_Buffer_Sizeint getReceiveBufferSize()
ChannelOption.SO_RCVBUF option.int getSendBufferSize()
ChannelOption.SO_SNDBUF option.int getSoLinger()
ChannelOption.SO_LINGER option.int getSystemReceiveBufferSize()
OptionUDT#System_Receive_Buffer_Sizeint getSystemSendBufferSize()
OptionUDT#System_Send_Buffer_Sizeboolean isReuseAddress()
ChannelOption.SO_REUSEADDR option.UdtChannelConfig setConnectTimeoutMillis(int connectTimeoutMillis)
ChannelConfigChannel does not support connect operation, this property is not
used at all, and therefore will be ignored.setConnectTimeoutMillis 在接口中 ChannelConfigconnectTimeoutMillis - the connect timeout in milliseconds.
0 to disable.UdtChannelConfig setMaxMessagesPerRead(int maxMessagesPerRead)
ChannelConfigsetMaxMessagesPerRead 在接口中 ChannelConfigUdtChannelConfig setWriteSpinCount(int writeSpinCount)
ChannelConfigWritableByteChannel.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 在接口中 ChannelConfigUdtChannelConfig setAllocator(ByteBufAllocator allocator)
ChannelConfigByteBufAllocator which is used for the channel
to allocate buffers.setAllocator 在接口中 ChannelConfigUdtChannelConfig setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ChannelConfigByteBufAllocator which is used for the channel
to allocate receive buffers.setRecvByteBufAllocator 在接口中 ChannelConfigUdtChannelConfig setAutoRead(boolean autoRead)
ChannelConfigChannelHandlerContext.read() will be invoked automatically so that a user application doesn't
need to call it at all. The default value is true.setAutoRead 在接口中 ChannelConfigUdtChannelConfig setAutoClose(boolean autoClose)
setAutoClose 在接口中 ChannelConfigUdtChannelConfig setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
ChannelConfigChannel.isWritable()
will start to return false.setWriteBufferHighWaterMark 在接口中 ChannelConfigUdtChannelConfig setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
ChannelConfigChannel.isWritable() will start to return
true again.setWriteBufferLowWaterMark 在接口中 ChannelConfigUdtChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator)
ChannelConfigMessageSizeEstimator which is used for the channel
to detect the size of a message.setMessageSizeEstimator 在接口中 ChannelConfigUdtChannelConfig setProtocolReceiveBufferSize(int size)
OptionUDT#Protocol_Receive_Buffer_SizeUdtChannelConfig setProtocolSendBufferSize(int size)
OptionUDT#Protocol_Send_Buffer_SizeUdtChannelConfig setReceiveBufferSize(int receiveBufferSize)
ChannelOption.SO_RCVBUF option.UdtChannelConfig setReuseAddress(boolean reuseAddress)
ChannelOption.SO_REUSEADDR option.UdtChannelConfig setSendBufferSize(int sendBufferSize)
ChannelOption.SO_SNDBUF option.UdtChannelConfig setSoLinger(int soLinger)
ChannelOption.SO_LINGER option.UdtChannelConfig setSystemReceiveBufferSize(int size)
OptionUDT#System_Receive_Buffer_SizeUdtChannelConfig setSystemSendBufferSize(int size)
OptionUDT#System_Send_Buffer_Size