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()
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 |
setAutoRead(boolean autoRead)
Sets if
ChannelOutboundInvoker.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 in a
MessageList of
a channelRead() event. |
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 |
setWriteSpinCount(int writeSpinCount)
Sets the maximum loop count for a write operation until
WritableByteChannel.write(ByteBuffer) returns a non-zero value. |
getAllocator, getConnectTimeoutMillis, getMaxMessagesPerRead, getOption, getOptions, getRecvByteBufAllocator, getWriteBufferHighWaterMark, getWriteBufferLowWaterMark, getWriteSpinCount, isAutoRead, setOption, setOptions, setWriteBufferHighWaterMark, setWriteBufferLowWaterMarkint 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)
ChannelConfigMessageList of
a channelRead() event.
If this value is greater than 1, an event loop might attempt to read multiple times to fill multiple messages
into the MessageList.setMaxMessagesPerRead 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)
ChannelConfigChannelOutboundInvoker.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 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–2013 The Netty Project. All rights reserved.