public interface DatagramChannelConfig extends ChannelConfig
ChannelConfig
for a DatagramChannel
.
ChannelConfig
,
DatagramChannelConfig
allows the following options in the option map:
getAllocator, getConnectTimeoutMillis, getMaxMessagesPerRead, getMessageSizeEstimator, getOption, getOptions, getRecvByteBufAllocator, getWriteBufferHighWaterMark, getWriteBufferLowWaterMark, getWriteBufferWaterMark, getWriteSpinCount, isAutoClose, isAutoRead, setOption, setOptions, setWriteBufferHighWaterMark, setWriteBufferLowWaterMark
int getSendBufferSize()
StandardSocketOptions.SO_SNDBUF
option.DatagramChannelConfig setSendBufferSize(int sendBufferSize)
StandardSocketOptions.SO_SNDBUF
option.int getReceiveBufferSize()
StandardSocketOptions.SO_RCVBUF
option.DatagramChannelConfig setReceiveBufferSize(int receiveBufferSize)
StandardSocketOptions.SO_RCVBUF
option.int getTrafficClass()
StandardSocketOptions.IP_TOS
option.DatagramChannelConfig setTrafficClass(int trafficClass)
StandardSocketOptions.IP_TOS
option.boolean isReuseAddress()
StandardSocketOptions.SO_REUSEADDR
option.DatagramChannelConfig setReuseAddress(boolean reuseAddress)
StandardSocketOptions.SO_REUSEADDR
option.boolean isBroadcast()
StandardSocketOptions.SO_BROADCAST
option.DatagramChannelConfig setBroadcast(boolean broadcast)
StandardSocketOptions.SO_BROADCAST
option.boolean isLoopbackModeDisabled()
StandardSocketOptions.IP_MULTICAST_LOOP
option.true
if and only if the loopback mode has been disabledDatagramChannelConfig setLoopbackModeDisabled(boolean loopbackModeDisabled)
StandardSocketOptions.IP_MULTICAST_LOOP
option.loopbackModeDisabled
- true
if and only if the loopback mode has been disabledint getTimeToLive()
StandardSocketOptions.IP_MULTICAST_TTL
option.DatagramChannelConfig setTimeToLive(int ttl)
StandardSocketOptions.IP_MULTICAST_TTL
option.InetAddress getInterface()
DatagramChannelConfig setInterface(InetAddress interfaceAddress)
NetworkInterface getNetworkInterface()
StandardSocketOptions.IP_MULTICAST_IF
option.DatagramChannelConfig setNetworkInterface(NetworkInterface networkInterface)
StandardSocketOptions.IP_MULTICAST_IF
option.@Deprecated DatagramChannelConfig setMaxMessagesPerRead(int maxMessagesPerRead)
setMaxMessagesPerRead
in interface ChannelConfig
DatagramChannelConfig 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
DatagramChannelConfig 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.DatagramChannelConfig setAllocator(ByteBufAllocator allocator)
ChannelConfig
ByteBufAllocator
which is used for the channel
to allocate buffers.setAllocator
in interface ChannelConfig
DatagramChannelConfig setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ChannelConfig
RecvByteBufAllocator
which is used for the channel to allocate receive buffers.setRecvByteBufAllocator
in interface ChannelConfig
DatagramChannelConfig 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
DatagramChannelConfig setAutoClose(boolean autoClose)
setAutoClose
in interface ChannelConfig
DatagramChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator)
ChannelConfig
MessageSizeEstimator
which is used for the channel
to detect the size of a message.setMessageSizeEstimator
in interface ChannelConfig
DatagramChannelConfig setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
ChannelConfig
WriteBufferWaterMark
which is used for setting the high and low
water mark of the write buffer.setWriteBufferWaterMark
in interface ChannelConfig
Copyright © 2008–2017 The Netty Project. All rights reserved.