Uses of Interface
io.netty.channel.socket.DatagramChannelConfig
-
Packages that use DatagramChannelConfig Package Description 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). -
-
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
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
Classes in io.netty.channel.socket.nio that implement DatagramChannelConfig Modifier and Type Class Description (package private) class
NioDatagramChannelConfig
The defaultNioDatagramChannelConfig
implementation.Fields in io.netty.channel.socket.nio declared as DatagramChannelConfig Modifier and Type Field Description private DatagramChannelConfig
NioDatagramChannel. config
Methods in io.netty.channel.socket.nio that return DatagramChannelConfig Modifier and Type Method Description DatagramChannelConfig
NioDatagramChannel. config()
DatagramChannelConfig
NioDatagramChannelConfig. setAutoRead(boolean autoRead)
DatagramChannelConfig
NioDatagramChannelConfig. setInterface(java.net.InetAddress interfaceAddress)
DatagramChannelConfig
NioDatagramChannelConfig. setLoopbackModeDisabled(boolean loopbackModeDisabled)
DatagramChannelConfig
NioDatagramChannelConfig. setNetworkInterface(java.net.NetworkInterface networkInterface)
DatagramChannelConfig
NioDatagramChannelConfig. setTimeToLive(int ttl)
-
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.Classes in io.netty.channel.socket.oio that implement DatagramChannelConfig Modifier and Type Class Description (package private) class
DefaultOioDatagramChannelConfig
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.
-