@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.
| Modifier and Type | Method and Description |
|---|---|
int |
getProtocolReceiveBufferSize()
Deprecated.
Gets
OptionUDT.Protocol_Receive_Buffer_Size |
int |
getProtocolSendBufferSize()
Deprecated.
Gets
OptionUDT.Protocol_Send_Buffer_Size |
int |
getReceiveBufferSize()
Deprecated.
Gets the
ChannelOption.SO_RCVBUF option. |
int |
getSendBufferSize()
Deprecated.
Gets the
ChannelOption.SO_SNDBUF option. |
int |
getSoLinger()
Deprecated.
Gets the
ChannelOption.SO_LINGER option. |
int |
getSystemReceiveBufferSize()
Deprecated.
Gets
OptionUDT.System_Receive_Buffer_Size |
int |
getSystemSendBufferSize()
Deprecated.
Gets
OptionUDT.System_Send_Buffer_Size |
boolean |
isReuseAddress()
Deprecated.
Gets the
ChannelOption.SO_REUSEADDR option. |
UdtChannelConfig |
setAllocator(ByteBufAllocator allocator)
Deprecated.
Set the
ByteBufAllocator which is used for the channel
to allocate buffers. |
UdtChannelConfig |
setAutoClose(boolean autoClose)
Deprecated.
|
UdtChannelConfig |
setAutoRead(boolean autoRead)
Deprecated.
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)
Deprecated.
Sets the connect timeout of the channel in milliseconds.
|
UdtChannelConfig |
setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.
Sets the maximum number of messages to read per read loop.
|
UdtChannelConfig |
setMessageSizeEstimator(MessageSizeEstimator estimator)
Deprecated.
Set the
MessageSizeEstimator which is used for the channel
to detect the size of a message. |
UdtChannelConfig |
setProtocolReceiveBufferSize(int size)
Deprecated.
Sets
OptionUDT.Protocol_Receive_Buffer_Size |
UdtChannelConfig |
setProtocolSendBufferSize(int size)
Deprecated.
Sets
OptionUDT.Protocol_Send_Buffer_Size |
UdtChannelConfig |
setReceiveBufferSize(int receiveBufferSize)
Deprecated.
Sets the
ChannelOption.SO_RCVBUF option. |
UdtChannelConfig |
setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated.
Set the
ByteBufAllocator which is used for the channel
to allocate receive buffers. |
UdtChannelConfig |
setReuseAddress(boolean reuseAddress)
Deprecated.
Sets the
ChannelOption.SO_REUSEADDR option. |
UdtChannelConfig |
setSendBufferSize(int sendBufferSize)
Deprecated.
Sets the
ChannelOption.SO_SNDBUF option. |
UdtChannelConfig |
setSoLinger(int soLinger)
Deprecated.
Sets the
ChannelOption.SO_LINGER option. |
UdtChannelConfig |
setSystemReceiveBufferSize(int size)
Deprecated.
Sets
OptionUDT.System_Receive_Buffer_Size |
UdtChannelConfig |
setSystemSendBufferSize(int size)
Deprecated.
Sets
OptionUDT.System_Send_Buffer_Size |
UdtChannelConfig |
setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
Deprecated.
Sets the high water mark of the write buffer.
|
UdtChannelConfig |
setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
Deprecated.
Sets the low water mark of the write buffer.
|
UdtChannelConfig |
setWriteSpinCount(int writeSpinCount)
Deprecated.
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, getWriteSpinCount, isAutoClose, isAutoRead, setOption, setOptionsint 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 in interface ChannelConfigconnectTimeoutMillis - the connect timeout in milliseconds.
0 to disable.UdtChannelConfig setMaxMessagesPerRead(int maxMessagesPerRead)
ChannelConfigsetMaxMessagesPerRead in interface 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 in interface ChannelConfigUdtChannelConfig setAllocator(ByteBufAllocator allocator)
ChannelConfigByteBufAllocator which is used for the channel
to allocate buffers.setAllocator in interface ChannelConfigUdtChannelConfig setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ChannelConfigByteBufAllocator which is used for the channel
to allocate receive buffers.setRecvByteBufAllocator in interface 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 in interface ChannelConfigUdtChannelConfig setAutoClose(boolean autoClose)
setAutoClose in interface ChannelConfigUdtChannelConfig setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
ChannelConfigChannel.isWritable()
will start to return false.setWriteBufferHighWaterMark in interface ChannelConfigUdtChannelConfig setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
ChannelConfigChannel.isWritable() will start to return
true again.setWriteBufferLowWaterMark in interface ChannelConfigUdtChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator)
ChannelConfigMessageSizeEstimator which is used for the channel
to detect the size of a message.setMessageSizeEstimator in interface 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_SizeCopyright © 2008–2018 The Netty Project. All rights reserved.