@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, isReuseAddress
getAllocator, getConnectTimeoutMillis, getMaxMessagesPerRead, getMessageSizeEstimator, getOption, getOptions, getRecvByteBufAllocator, getWriteBufferHighWaterMark, getWriteBufferLowWaterMark, getWriteBufferWaterMark, getWriteSpinCount, isAutoClose, isAutoRead, setOption, setOptions
OioDatagramChannelConfig setSoTimeout(int timeout)
int getSoTimeout()
OioDatagramChannelConfig setSendBufferSize(int sendBufferSize)
DatagramChannelConfig
StandardSocketOptions.SO_SNDBUF
option.setSendBufferSize
in interface DatagramChannelConfig
OioDatagramChannelConfig setReceiveBufferSize(int receiveBufferSize)
DatagramChannelConfig
StandardSocketOptions.SO_RCVBUF
option.setReceiveBufferSize
in interface DatagramChannelConfig
OioDatagramChannelConfig setTrafficClass(int trafficClass)
DatagramChannelConfig
StandardSocketOptions.IP_TOS
option.setTrafficClass
in interface DatagramChannelConfig
OioDatagramChannelConfig setReuseAddress(boolean reuseAddress)
DatagramChannelConfig
StandardSocketOptions.SO_REUSEADDR
option.setReuseAddress
in interface DatagramChannelConfig
OioDatagramChannelConfig setBroadcast(boolean broadcast)
DatagramChannelConfig
StandardSocketOptions.SO_BROADCAST
option.setBroadcast
in interface DatagramChannelConfig
OioDatagramChannelConfig setLoopbackModeDisabled(boolean loopbackModeDisabled)
DatagramChannelConfig
StandardSocketOptions.IP_MULTICAST_LOOP
option.setLoopbackModeDisabled
in interface DatagramChannelConfig
loopbackModeDisabled
- true
if and only if the loopback mode has been disabledOioDatagramChannelConfig setTimeToLive(int ttl)
DatagramChannelConfig
StandardSocketOptions.IP_MULTICAST_TTL
option.setTimeToLive
in interface DatagramChannelConfig
OioDatagramChannelConfig setInterface(InetAddress interfaceAddress)
DatagramChannelConfig
setInterface
in interface DatagramChannelConfig
OioDatagramChannelConfig setNetworkInterface(NetworkInterface networkInterface)
DatagramChannelConfig
StandardSocketOptions.IP_MULTICAST_IF
option.setNetworkInterface
in interface DatagramChannelConfig
OioDatagramChannelConfig setMaxMessagesPerRead(int maxMessagesPerRead)
setMaxMessagesPerRead
in interface ChannelConfig
setMaxMessagesPerRead
in interface DatagramChannelConfig
OioDatagramChannelConfig 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
setWriteSpinCount
in interface DatagramChannelConfig
OioDatagramChannelConfig 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
setConnectTimeoutMillis
in interface DatagramChannelConfig
connectTimeoutMillis
- the connect timeout in milliseconds.
0
to disable.OioDatagramChannelConfig setAllocator(ByteBufAllocator allocator)
ChannelConfig
ByteBufAllocator
which is used for the channel
to allocate buffers.setAllocator
in interface ChannelConfig
setAllocator
in interface DatagramChannelConfig
OioDatagramChannelConfig setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ChannelConfig
RecvByteBufAllocator
which is used for the channel to allocate receive buffers.setRecvByteBufAllocator
in interface ChannelConfig
setRecvByteBufAllocator
in interface DatagramChannelConfig
OioDatagramChannelConfig 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
setAutoRead
in interface DatagramChannelConfig
OioDatagramChannelConfig setAutoClose(boolean autoClose)
ChannelConfig
Channel
should be closed automatically and immediately on write failure.
The default is true
.setAutoClose
in interface ChannelConfig
setAutoClose
in interface DatagramChannelConfig
OioDatagramChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator)
ChannelConfig
MessageSizeEstimator
which is used for the channel
to detect the size of a message.setMessageSizeEstimator
in interface ChannelConfig
setMessageSizeEstimator
in interface DatagramChannelConfig
OioDatagramChannelConfig setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
ChannelConfig
WriteBufferWaterMark
which is used for setting the high and low
water mark of the write buffer.setWriteBufferWaterMark
in interface ChannelConfig
setWriteBufferWaterMark
in interface DatagramChannelConfig
OioDatagramChannelConfig 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 ChannelConfig
OioDatagramChannelConfig 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 ChannelConfig
Copyright © 2008–2024 The Netty Project. All rights reserved.