Uses of Interface
io.netty.channel.socket.DatagramChannelConfig
-
Packages that use DatagramChannelConfig Package Description io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.kqueue BSD specific transport.io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.uring io_uring is a high I/O performance scalable interface for fully asynchronous Linux syscalls. -
-
Uses of DatagramChannelConfig in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement DatagramChannelConfig Modifier and Type Class Description class
EpollDatagramChannelConfig
Methods in io.netty.channel.epoll that return DatagramChannelConfig Modifier and Type Method Description DatagramChannelConfig
EpollDatagramChannelConfig. setLoopbackModeDisabled(boolean loopbackModeDisabled)
-
Uses of DatagramChannelConfig in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement DatagramChannelConfig Modifier and Type Class Description class
KQueueDatagramChannelConfig
Methods in io.netty.channel.kqueue that return DatagramChannelConfig Modifier and Type Method Description DatagramChannelConfig
KQueueDatagramChannelConfig. setLoopbackModeDisabled(boolean loopbackModeDisabled)
-
Uses of DatagramChannelConfig in io.netty.channel.socket
Classes in io.netty.channel.socket that implement DatagramChannelConfig Modifier and Type Class Description class
DefaultDatagramChannelConfig
The defaultDatagramChannelConfig
implementation.Methods in io.netty.channel.socket that return DatagramChannelConfig Modifier and Type Method Description DatagramChannelConfig
DatagramChannel. config()
DatagramChannelConfig
DatagramChannelConfig. setAllocator(ByteBufAllocator allocator)
DatagramChannelConfig
DefaultDatagramChannelConfig. setAllocator(ByteBufAllocator allocator)
DatagramChannelConfig
DatagramChannelConfig. setAutoClose(boolean autoClose)
DatagramChannelConfig
DefaultDatagramChannelConfig. setAutoClose(boolean autoClose)
DatagramChannelConfig
DatagramChannelConfig. setAutoRead(boolean autoRead)
DatagramChannelConfig
DefaultDatagramChannelConfig. setAutoRead(boolean autoRead)
DatagramChannelConfig
DatagramChannelConfig. setBroadcast(boolean broadcast)
Sets theStandardSocketOptions.SO_BROADCAST
option.DatagramChannelConfig
DefaultDatagramChannelConfig. setBroadcast(boolean broadcast)
DatagramChannelConfig
DatagramChannelConfig. setConnectTimeoutMillis(int connectTimeoutMillis)
DatagramChannelConfig
DefaultDatagramChannelConfig. setConnectTimeoutMillis(int connectTimeoutMillis)
DatagramChannelConfig
DatagramChannelConfig. setInterface(java.net.InetAddress interfaceAddress)
Sets the address of the network interface used for multicast packets.DatagramChannelConfig
DefaultDatagramChannelConfig. setInterface(java.net.InetAddress interfaceAddress)
DatagramChannelConfig
DatagramChannelConfig. setLoopbackModeDisabled(boolean loopbackModeDisabled)
Sets theStandardSocketOptions.IP_MULTICAST_LOOP
option.DatagramChannelConfig
DefaultDatagramChannelConfig. setLoopbackModeDisabled(boolean loopbackModeDisabled)
DatagramChannelConfig
DatagramChannelConfig. setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.DatagramChannelConfig
DefaultDatagramChannelConfig. setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.DatagramChannelConfig
DefaultDatagramChannelConfig. setMaxMessagesPerWrite(int maxMessagesPerWrite)
DatagramChannelConfig
DatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)
DatagramChannelConfig
DefaultDatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)
DatagramChannelConfig
DatagramChannelConfig. setNetworkInterface(java.net.NetworkInterface networkInterface)
Sets theStandardSocketOptions.IP_MULTICAST_IF
option.DatagramChannelConfig
DefaultDatagramChannelConfig. setNetworkInterface(java.net.NetworkInterface networkInterface)
DatagramChannelConfig
DatagramChannelConfig. setReceiveBufferSize(int receiveBufferSize)
Sets theStandardSocketOptions.SO_RCVBUF
option.DatagramChannelConfig
DefaultDatagramChannelConfig. setReceiveBufferSize(int receiveBufferSize)
DatagramChannelConfig
DatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
DatagramChannelConfig
DefaultDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
DatagramChannelConfig
DatagramChannelConfig. setReuseAddress(boolean reuseAddress)
Gets theStandardSocketOptions.SO_REUSEADDR
option.DatagramChannelConfig
DefaultDatagramChannelConfig. setReuseAddress(boolean reuseAddress)
DatagramChannelConfig
DatagramChannelConfig. setSendBufferSize(int sendBufferSize)
Sets theStandardSocketOptions.SO_SNDBUF
option.DatagramChannelConfig
DefaultDatagramChannelConfig. setSendBufferSize(int sendBufferSize)
DatagramChannelConfig
DatagramChannelConfig. setTimeToLive(int ttl)
Sets theStandardSocketOptions.IP_MULTICAST_TTL
option.DatagramChannelConfig
DefaultDatagramChannelConfig. setTimeToLive(int ttl)
DatagramChannelConfig
DatagramChannelConfig. setTrafficClass(int trafficClass)
Sets theStandardSocketOptions.IP_TOS
option.DatagramChannelConfig
DefaultDatagramChannelConfig. setTrafficClass(int trafficClass)
DatagramChannelConfig
DefaultDatagramChannelConfig. setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
DatagramChannelConfig
DefaultDatagramChannelConfig. setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
DatagramChannelConfig
DatagramChannelConfig. setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
DatagramChannelConfig
DefaultDatagramChannelConfig. setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
DatagramChannelConfig
DatagramChannelConfig. setWriteSpinCount(int writeSpinCount)
DatagramChannelConfig
DefaultDatagramChannelConfig. setWriteSpinCount(int writeSpinCount)
-
Uses of DatagramChannelConfig in io.netty.channel.socket.nio
Methods in io.netty.channel.socket.nio that return DatagramChannelConfig Modifier and Type Method Description DatagramChannelConfig
NioDatagramChannel. config()
-
Uses of DatagramChannelConfig in io.netty.channel.socket.oio
Subinterfaces of DatagramChannelConfig in io.netty.channel.socket.oio Modifier and Type Interface Description interface
OioDatagramChannelConfig
Deprecated.use NIO / EPOLL / KQUEUE transport.Methods in io.netty.channel.socket.oio that return DatagramChannelConfig Modifier and Type Method Description DatagramChannelConfig
OioDatagramChannel. config()
Deprecated.Returns the configuration of this channel. -
Uses of DatagramChannelConfig in io.netty.channel.uring
Methods in io.netty.channel.uring that return DatagramChannelConfig Modifier and Type Method Description DatagramChannelConfig
IoUringDatagramChannel. config()
-