@Deprecated public interface OioDatagramChannelConfig extends DatagramChannelConfig
| Modifier and Type | Method and Description |
|---|---|
int |
getSoTimeout()
Deprecated.
Returns the maximal time a operation on the underlying socket may block.
|
OioDatagramChannelConfig |
setAllocator(ByteBufAllocator allocator)
Deprecated.
Set the
ByteBufAllocator which is used for the channel
to allocate buffers. |
OioDatagramChannelConfig |
setAutoClose(boolean autoClose)
Deprecated.
Sets whether the
Channel should be closed automatically and immediately on write failure. |
OioDatagramChannelConfig |
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. |
OioDatagramChannelConfig |
setBroadcast(boolean broadcast)
Deprecated.
Sets the
StandardSocketOptions.SO_BROADCAST option. |
OioDatagramChannelConfig |
setConnectTimeoutMillis(int connectTimeoutMillis)
Deprecated.
Sets the connect timeout of the channel in milliseconds.
|
OioDatagramChannelConfig |
setInterface(InetAddress interfaceAddress)
Deprecated.
Sets the address of the network interface used for multicast packets.
|
OioDatagramChannelConfig |
setLoopbackModeDisabled(boolean loopbackModeDisabled)
Deprecated.
Sets the
StandardSocketOptions.IP_MULTICAST_LOOP option. |
OioDatagramChannelConfig |
setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.
|
OioDatagramChannelConfig |
setMessageSizeEstimator(MessageSizeEstimator estimator)
Deprecated.
Set the
MessageSizeEstimator which is used for the channel
to detect the size of a message. |
OioDatagramChannelConfig |
setNetworkInterface(NetworkInterface networkInterface)
Deprecated.
Sets the
StandardSocketOptions.IP_MULTICAST_IF option. |
OioDatagramChannelConfig |
setReceiveBufferSize(int receiveBufferSize)
Deprecated.
Sets the
StandardSocketOptions.SO_RCVBUF option. |
OioDatagramChannelConfig |
setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated.
Set the
RecvByteBufAllocator which is used for the channel to allocate receive buffers. |
OioDatagramChannelConfig |
setReuseAddress(boolean reuseAddress)
Deprecated.
Gets the
StandardSocketOptions.SO_REUSEADDR option. |
OioDatagramChannelConfig |
setSendBufferSize(int sendBufferSize)
Deprecated.
Sets the
StandardSocketOptions.SO_SNDBUF option. |
OioDatagramChannelConfig |
setSoTimeout(int timeout)
Deprecated.
Sets the maximal time a operation on the underlying socket may block.
|
OioDatagramChannelConfig |
setTimeToLive(int ttl)
Deprecated.
Sets the
StandardSocketOptions.IP_MULTICAST_TTL option. |
OioDatagramChannelConfig |
setTrafficClass(int trafficClass)
Deprecated.
Sets the
StandardSocketOptions.IP_TOS option. |
OioDatagramChannelConfig |
setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
Deprecated.
Sets the high water mark of the write buffer.
|
OioDatagramChannelConfig |
setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
Deprecated.
Sets the low water mark of the write buffer.
|
OioDatagramChannelConfig |
setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
Deprecated.
Set the
WriteBufferWaterMark which is used for setting the high and low
water mark of the write buffer. |
OioDatagramChannelConfig |
setWriteSpinCount(int writeSpinCount)
Deprecated.
Sets the maximum loop count for a write operation until
WritableByteChannel.write(ByteBuffer) returns a non-zero value. |
getInterface, getNetworkInterface, getReceiveBufferSize, getSendBufferSize, getTimeToLive, getTrafficClass, isBroadcast, isLoopbackModeDisabled, isReuseAddressgetAllocator, getConnectTimeoutMillis, getMaxMessagesPerRead, getMessageSizeEstimator, getOption, getOptions, getRecvByteBufAllocator, getWriteBufferHighWaterMark, getWriteBufferLowWaterMark, getWriteBufferWaterMark, getWriteSpinCount, isAutoClose, isAutoRead, setOption, setOptionsOioDatagramChannelConfig setSoTimeout(int timeout)
int getSoTimeout()
OioDatagramChannelConfig setSendBufferSize(int sendBufferSize)
DatagramChannelConfigStandardSocketOptions.SO_SNDBUF option.setSendBufferSize in interface DatagramChannelConfigOioDatagramChannelConfig setReceiveBufferSize(int receiveBufferSize)
DatagramChannelConfigStandardSocketOptions.SO_RCVBUF option.setReceiveBufferSize in interface DatagramChannelConfigOioDatagramChannelConfig setTrafficClass(int trafficClass)
DatagramChannelConfigStandardSocketOptions.IP_TOS option.setTrafficClass in interface DatagramChannelConfigOioDatagramChannelConfig setReuseAddress(boolean reuseAddress)
DatagramChannelConfigStandardSocketOptions.SO_REUSEADDR option.setReuseAddress in interface DatagramChannelConfigOioDatagramChannelConfig setBroadcast(boolean broadcast)
DatagramChannelConfigStandardSocketOptions.SO_BROADCAST option.setBroadcast in interface DatagramChannelConfigOioDatagramChannelConfig setLoopbackModeDisabled(boolean loopbackModeDisabled)
DatagramChannelConfigStandardSocketOptions.IP_MULTICAST_LOOP option.setLoopbackModeDisabled in interface DatagramChannelConfigloopbackModeDisabled - true if and only if the loopback mode has been disabledOioDatagramChannelConfig setTimeToLive(int ttl)
DatagramChannelConfigStandardSocketOptions.IP_MULTICAST_TTL option.setTimeToLive in interface DatagramChannelConfigOioDatagramChannelConfig setInterface(InetAddress interfaceAddress)
DatagramChannelConfigsetInterface in interface DatagramChannelConfigOioDatagramChannelConfig setNetworkInterface(NetworkInterface networkInterface)
DatagramChannelConfigStandardSocketOptions.IP_MULTICAST_IF option.setNetworkInterface in interface DatagramChannelConfigOioDatagramChannelConfig setMaxMessagesPerRead(int maxMessagesPerRead)
setMaxMessagesPerRead in interface ChannelConfigsetMaxMessagesPerRead in interface DatagramChannelConfigOioDatagramChannelConfig 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 ChannelConfigsetWriteSpinCount in interface DatagramChannelConfigOioDatagramChannelConfig setConnectTimeoutMillis(int connectTimeoutMillis)
ChannelConfigChannel does not support connect operation, this property is not
used at all, and therefore will be ignored.setConnectTimeoutMillis in interface ChannelConfigsetConnectTimeoutMillis in interface DatagramChannelConfigconnectTimeoutMillis - the connect timeout in milliseconds.
0 to disable.OioDatagramChannelConfig setAllocator(ByteBufAllocator allocator)
ChannelConfigByteBufAllocator which is used for the channel
to allocate buffers.setAllocator in interface ChannelConfigsetAllocator in interface DatagramChannelConfigOioDatagramChannelConfig setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ChannelConfigRecvByteBufAllocator which is used for the channel to allocate receive buffers.setRecvByteBufAllocator in interface ChannelConfigsetRecvByteBufAllocator in interface DatagramChannelConfigOioDatagramChannelConfig 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 ChannelConfigsetAutoRead in interface DatagramChannelConfigOioDatagramChannelConfig setAutoClose(boolean autoClose)
ChannelConfigChannel should be closed automatically and immediately on write failure.
The default is true.setAutoClose in interface ChannelConfigsetAutoClose in interface DatagramChannelConfigOioDatagramChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator)
ChannelConfigMessageSizeEstimator which is used for the channel
to detect the size of a message.setMessageSizeEstimator in interface ChannelConfigsetMessageSizeEstimator in interface DatagramChannelConfigOioDatagramChannelConfig setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
ChannelConfigWriteBufferWaterMark which is used for setting the high and low
water mark of the write buffer.setWriteBufferWaterMark in interface ChannelConfigsetWriteBufferWaterMark in interface DatagramChannelConfigOioDatagramChannelConfig 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 in interface ChannelConfigOioDatagramChannelConfig 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 in interface ChannelConfigCopyright © 2008–2025 The Netty Project. All rights reserved.