@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, 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
in interface ChannelConfig
connectTimeoutMillis
- the connect timeout in milliseconds.
0
to disable.UdtChannelConfig setMaxMessagesPerRead(int maxMessagesPerRead)
ChannelConfig
setMaxMessagesPerRead
in interface 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
in interface ChannelConfig
UdtChannelConfig setAllocator(ByteBufAllocator allocator)
ChannelConfig
ByteBufAllocator
which is used for the channel
to allocate buffers.setAllocator
in interface ChannelConfig
UdtChannelConfig setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ChannelConfig
ByteBufAllocator
which is used for the channel
to allocate receive buffers.setRecvByteBufAllocator
in interface 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
in interface ChannelConfig
UdtChannelConfig setAutoClose(boolean autoClose)
setAutoClose
in interface ChannelConfig
UdtChannelConfig setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
ChannelConfig
Channel.isWritable()
will start to return false
.setWriteBufferHighWaterMark
in interface ChannelConfig
UdtChannelConfig setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
ChannelConfig
Channel.isWritable()
will start to return
true
again.setWriteBufferLowWaterMark
in interface ChannelConfig
UdtChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator)
ChannelConfig
MessageSizeEstimator
which is used for the channel
to detect the size of a message.setMessageSizeEstimator
in interface 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
Copyright © 2008–2018 The Netty Project. All rights reserved.