Uses of Interface
io.netty.channel.socket.DatagramChannelConfig
Packages that use DatagramChannelConfig
Package
Description
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
BSD specific transport.
Abstract TCP and UDP socket interfaces which extend the core channel API.
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
-
Uses of DatagramChannelConfig in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement DatagramChannelConfigMethods in io.netty.channel.epoll that return DatagramChannelConfigModifier and TypeMethodDescriptionEpollDatagramChannelConfig.setLoopbackModeDisabled
(boolean loopbackModeDisabled) -
Uses of DatagramChannelConfig in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement DatagramChannelConfigMethods in io.netty.channel.kqueue that return DatagramChannelConfigModifier and TypeMethodDescriptionKQueueDatagramChannelConfig.setLoopbackModeDisabled
(boolean loopbackModeDisabled) -
Uses of DatagramChannelConfig in io.netty.channel.socket
Classes in io.netty.channel.socket that implement DatagramChannelConfigMethods in io.netty.channel.socket that return DatagramChannelConfigModifier and TypeMethodDescriptionDatagramChannel.config()
DatagramChannelConfig.setAllocator
(ByteBufAllocator allocator) DefaultDatagramChannelConfig.setAllocator
(ByteBufAllocator allocator) DatagramChannelConfig.setAutoClose
(boolean autoClose) DefaultDatagramChannelConfig.setAutoClose
(boolean autoClose) DatagramChannelConfig.setAutoRead
(boolean autoRead) DefaultDatagramChannelConfig.setAutoRead
(boolean autoRead) DatagramChannelConfig.setBroadcast
(boolean broadcast) Sets theStandardSocketOptions.SO_BROADCAST
option.DefaultDatagramChannelConfig.setBroadcast
(boolean broadcast) DatagramChannelConfig.setConnectTimeoutMillis
(int connectTimeoutMillis) DefaultDatagramChannelConfig.setConnectTimeoutMillis
(int connectTimeoutMillis) DatagramChannelConfig.setInterface
(InetAddress interfaceAddress) Sets the address of the network interface used for multicast packets.DefaultDatagramChannelConfig.setInterface
(InetAddress interfaceAddress) DatagramChannelConfig.setLoopbackModeDisabled
(boolean loopbackModeDisabled) Sets theStandardSocketOptions.IP_MULTICAST_LOOP
option.DefaultDatagramChannelConfig.setLoopbackModeDisabled
(boolean loopbackModeDisabled) DatagramChannelConfig.setMaxMessagesPerRead
(int maxMessagesPerRead) Deprecated.DefaultDatagramChannelConfig.setMaxMessagesPerRead
(int maxMessagesPerRead) Deprecated.DefaultDatagramChannelConfig.setMaxMessagesPerWrite
(int maxMessagesPerWrite) DatagramChannelConfig.setMessageSizeEstimator
(MessageSizeEstimator estimator) DefaultDatagramChannelConfig.setMessageSizeEstimator
(MessageSizeEstimator estimator) DatagramChannelConfig.setNetworkInterface
(NetworkInterface networkInterface) Sets theStandardSocketOptions.IP_MULTICAST_IF
option.DefaultDatagramChannelConfig.setNetworkInterface
(NetworkInterface networkInterface) DatagramChannelConfig.setReceiveBufferSize
(int receiveBufferSize) Sets theStandardSocketOptions.SO_RCVBUF
option.DefaultDatagramChannelConfig.setReceiveBufferSize
(int receiveBufferSize) DatagramChannelConfig.setRecvByteBufAllocator
(RecvByteBufAllocator allocator) DefaultDatagramChannelConfig.setRecvByteBufAllocator
(RecvByteBufAllocator allocator) DatagramChannelConfig.setReuseAddress
(boolean reuseAddress) Gets theStandardSocketOptions.SO_REUSEADDR
option.DefaultDatagramChannelConfig.setReuseAddress
(boolean reuseAddress) DatagramChannelConfig.setSendBufferSize
(int sendBufferSize) Sets theStandardSocketOptions.SO_SNDBUF
option.DefaultDatagramChannelConfig.setSendBufferSize
(int sendBufferSize) DatagramChannelConfig.setTimeToLive
(int ttl) Sets theStandardSocketOptions.IP_MULTICAST_TTL
option.DefaultDatagramChannelConfig.setTimeToLive
(int ttl) DatagramChannelConfig.setTrafficClass
(int trafficClass) Sets theStandardSocketOptions.IP_TOS
option.DefaultDatagramChannelConfig.setTrafficClass
(int trafficClass) DefaultDatagramChannelConfig.setWriteBufferHighWaterMark
(int writeBufferHighWaterMark) DefaultDatagramChannelConfig.setWriteBufferLowWaterMark
(int writeBufferLowWaterMark) DatagramChannelConfig.setWriteBufferWaterMark
(WriteBufferWaterMark writeBufferWaterMark) DefaultDatagramChannelConfig.setWriteBufferWaterMark
(WriteBufferWaterMark writeBufferWaterMark) DatagramChannelConfig.setWriteSpinCount
(int writeSpinCount) DefaultDatagramChannelConfig.setWriteSpinCount
(int writeSpinCount) -
Uses of DatagramChannelConfig in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement DatagramChannelConfigModifier and TypeClassDescription(package private) class
The defaultNioDatagramChannelConfig
implementation.Fields in io.netty.channel.socket.nio declared as DatagramChannelConfigMethods in io.netty.channel.socket.nio that return DatagramChannelConfigModifier and TypeMethodDescriptionNioDatagramChannel.config()
NioDatagramChannelConfig.setAutoRead
(boolean autoRead) NioDatagramChannelConfig.setInterface
(InetAddress interfaceAddress) NioDatagramChannelConfig.setLoopbackModeDisabled
(boolean loopbackModeDisabled) NioDatagramChannelConfig.setNetworkInterface
(NetworkInterface networkInterface) NioDatagramChannelConfig.setTimeToLive
(int ttl) -
Uses of DatagramChannelConfig in io.netty.channel.socket.oio
Subinterfaces of DatagramChannelConfig in io.netty.channel.socket.oioModifier and TypeInterfaceDescriptioninterface
Deprecated.use NIO / EPOLL / KQUEUE transport.Classes in io.netty.channel.socket.oio that implement DatagramChannelConfigMethods in io.netty.channel.socket.oio that return DatagramChannelConfigModifier and TypeMethodDescriptionOioDatagramChannel.config()
Deprecated.Returns the configuration of this channel.