@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)
已过时。
Sets whether the
Channel should be closed automatically and immediately on write failure. |
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)
已过时。
|
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
RecvByteBufAllocator 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 |
setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
已过时。
Set the
WriteBufferWaterMark which is used for setting the high and 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. |
getAllocator, getConnectTimeoutMillis, getMaxMessagesPerRead, getMessageSizeEstimator, getOption, getOptions, getRecvByteBufAllocator, getWriteBufferHighWaterMark, getWriteBufferLowWaterMark, getWriteBufferWaterMark, getWriteSpinCount, isAutoClose, isAutoRead, setOption, setOptions
int getProtocolReceiveBufferSize()
OptionUDT#Protocol_Receive_Buffer_Size
int getProtocolSendBufferSize()
OptionUDT#Protocol_Send_Buffer_Size
int getReceiveBufferSize()
ChannelOption.SO_RCVBUF
option.int getSendBufferSize()
ChannelOption.SO_SNDBUF
option.int getSoLinger()
ChannelOption.SO_LINGER
option.int getSystemReceiveBufferSize()
OptionUDT#System_Receive_Buffer_Size
int getSystemSendBufferSize()
OptionUDT#System_Send_Buffer_Size
boolean isReuseAddress()
ChannelOption.SO_REUSEADDR
option.UdtChannelConfig setConnectTimeoutMillis(int connectTimeoutMillis)
ChannelConfig
Channel
does not support connect operation, this property is not
used at all, and therefore will be ignored.setConnectTimeoutMillis
在接口中 ChannelConfig
connectTimeoutMillis
- the connect timeout in milliseconds.
0
to disable.@Deprecated UdtChannelConfig setMaxMessagesPerRead(int maxMessagesPerRead)
setMaxMessagesPerRead
在接口中 ChannelConfig
UdtChannelConfig 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
UdtChannelConfig setAllocator(ByteBufAllocator allocator)
ChannelConfig
ByteBufAllocator
which is used for the channel
to allocate buffers.setAllocator
在接口中 ChannelConfig
UdtChannelConfig setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ChannelConfig
RecvByteBufAllocator
which is used for the channel to allocate receive buffers.setRecvByteBufAllocator
在接口中 ChannelConfig
UdtChannelConfig 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
UdtChannelConfig setAutoClose(boolean autoClose)
ChannelConfig
Channel
should be closed automatically and immediately on write failure.
The default is true
.setAutoClose
在接口中 ChannelConfig
UdtChannelConfig setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
ChannelConfig
Sets the high water mark of the write buffer. If the number of bytes
queued in the write buffer exceeds this value, Channel.isWritable()
will start to return false
.
setWriteBufferHighWaterMark
在接口中 ChannelConfig
UdtChannelConfig setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
ChannelConfig
Sets the low water mark of the write buffer. Once the number of bytes
queued in the write buffer exceeded the
high water mark and then
dropped down below this value, Channel.isWritable()
will start to return
true
again.
setWriteBufferLowWaterMark
在接口中 ChannelConfig
UdtChannelConfig setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
ChannelConfig
WriteBufferWaterMark
which is used for setting the high and low
water mark of the write buffer.setWriteBufferWaterMark
在接口中 ChannelConfig
UdtChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator)
ChannelConfig
MessageSizeEstimator
which is used for the channel
to detect the size of a message.setMessageSizeEstimator
在接口中 ChannelConfig
UdtChannelConfig setProtocolReceiveBufferSize(int size)
OptionUDT#Protocol_Receive_Buffer_Size
UdtChannelConfig setProtocolSendBufferSize(int size)
OptionUDT#Protocol_Send_Buffer_Size
UdtChannelConfig 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_Size
UdtChannelConfig setSystemSendBufferSize(int size)
OptionUDT#System_Send_Buffer_Size