Uses of Class
io.netty.channel.socket.SocketProtocolFamily
-
Packages that use SocketProtocolFamily 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.unix Unix specific transport.io.netty.channel.uring io_uring is a high I/O performance scalable interface for fully asynchronous Linux syscalls.io.netty.handler.codec.dns DNS codec.io.netty.resolver.dns An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously, which supports the queries of an arbitrary DNS record type as well. -
-
Uses of SocketProtocolFamily in io.netty.channel.epoll
Methods in io.netty.channel.epoll with parameters of type SocketProtocolFamily Modifier and Type Method Description static LinuxSocket
LinuxSocket. newSocketDgram(SocketProtocolFamily family)
static LinuxSocket
LinuxSocket. newSocketStream(SocketProtocolFamily protocol)
Constructors in io.netty.channel.epoll with parameters of type SocketProtocolFamily Constructor Description EpollDatagramChannel(SocketProtocolFamily family)
Create a new instance using the givenSocketProtocolFamily
.EpollServerSocketChannel(SocketProtocolFamily protocol)
EpollSocketChannel(SocketProtocolFamily protocol)
-
Uses of SocketProtocolFamily in io.netty.channel.kqueue
Constructors in io.netty.channel.kqueue with parameters of type SocketProtocolFamily Constructor Description KQueueDatagramChannel(SocketProtocolFamily protocol)
KQueueSocketChannel(SocketProtocolFamily protocol)
-
Uses of SocketProtocolFamily in io.netty.channel.socket
Methods in io.netty.channel.socket that return SocketProtocolFamily Modifier and Type Method Description static SocketProtocolFamily
SocketProtocolFamily. of(java.net.ProtocolFamily family)
Return theSocketProtocolFamily
for the givenProtocolFamily
if possible.SocketProtocolFamily
InternetProtocolFamily. toSocketProtocolFamily()
Deprecated.static SocketProtocolFamily
SocketProtocolFamily. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SocketProtocolFamily[]
SocketProtocolFamily. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of SocketProtocolFamily in io.netty.channel.socket.nio
Constructors in io.netty.channel.socket.nio with parameters of type SocketProtocolFamily Constructor Description NioDatagramChannel(SocketProtocolFamily protocolFamily)
Create a new instance using the givenSocketProtocolFamily
.NioDatagramChannel(java.nio.channels.spi.SelectorProvider provider, SocketProtocolFamily protocolFamily)
Create a new instance using the givenSelectorProvider
andSocketProtocolFamily
.NioServerSocketChannel(java.nio.channels.spi.SelectorProvider provider, SocketProtocolFamily family)
Create a new instance using the givenSelectorProvider
and protocol family (supported only since JDK 15).NioSocketChannel(java.nio.channels.spi.SelectorProvider provider, SocketProtocolFamily family)
Create a new instance using the givenSelectorProvider
and protocol family (supported only since JDK 15). -
Uses of SocketProtocolFamily in io.netty.channel.unix
Methods in io.netty.channel.unix with parameters of type SocketProtocolFamily Modifier and Type Method Description protected static int
Socket. newSocketDgram0(SocketProtocolFamily family)
protected static int
Socket. newSocketStream0(SocketProtocolFamily protocol)
static boolean
Socket. shouldUseIpv6(SocketProtocolFamily family)
-
Uses of SocketProtocolFamily in io.netty.channel.uring
Constructors in io.netty.channel.uring with parameters of type SocketProtocolFamily Constructor Description IoUringDatagramChannel(SocketProtocolFamily family)
Create a new instance using the givenSocketProtocolFamily
. -
Uses of SocketProtocolFamily in io.netty.handler.codec.dns
Constructors in io.netty.handler.codec.dns with parameters of type SocketProtocolFamily Constructor Description DefaultDnsOptEcsRecord(int maxPayloadSize, SocketProtocolFamily socketProtocolFamily)
Creates a new instance. -
Uses of SocketProtocolFamily in io.netty.resolver.dns
Methods in io.netty.resolver.dns with parameters of type SocketProtocolFamily Modifier and Type Method Description static ResolvedAddressTypes
DnsNameResolverBuilder. toResolvedAddressTypes(SocketProtocolFamily... socketProtocolFamilies)
Compute aResolvedAddressTypes
from someSocketProtocolFamily
s.
-