Uses of Class
io.netty.channel.socket.InternetProtocolFamily
-
Packages that use InternetProtocolFamily 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.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 InternetProtocolFamily in io.netty.channel.epoll
Methods in io.netty.channel.epoll with parameters of type InternetProtocolFamily Modifier and Type Method Description static LinuxSocket
LinuxSocket. newSocketDgram(InternetProtocolFamily family)
Deprecated.static LinuxSocket
LinuxSocket. newSocketStream(InternetProtocolFamily protocol)
Deprecated.Constructors in io.netty.channel.epoll with parameters of type InternetProtocolFamily Constructor Description EpollDatagramChannel(InternetProtocolFamily family)
Deprecated.EpollServerSocketChannel(InternetProtocolFamily protocol)
Deprecated.EpollSocketChannel(InternetProtocolFamily protocol)
Deprecated. -
Uses of InternetProtocolFamily in io.netty.channel.kqueue
Constructors in io.netty.channel.kqueue with parameters of type InternetProtocolFamily Constructor Description KQueueDatagramChannel(InternetProtocolFamily protocol)
Deprecated.KQueueSocketChannel(InternetProtocolFamily protocol)
Deprecated.useKQueueDatagramChannel(SocketProtocolFamily)
-
Uses of InternetProtocolFamily in io.netty.channel.socket
Methods in io.netty.channel.socket that return InternetProtocolFamily Modifier and Type Method Description static InternetProtocolFamily
InternetProtocolFamily. of(java.net.InetAddress address)
Deprecated.Returns theInternetProtocolFamily
for the givenInetAddress
.static InternetProtocolFamily
InternetProtocolFamily. valueOf(java.lang.String name)
Deprecated.Returns the enum constant of this type with the specified name.static InternetProtocolFamily[]
InternetProtocolFamily. values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of InternetProtocolFamily in io.netty.channel.socket.nio
Constructors in io.netty.channel.socket.nio with parameters of type InternetProtocolFamily Constructor Description NioDatagramChannel(InternetProtocolFamily ipFamily)
Deprecated.NioDatagramChannel(java.nio.channels.spi.SelectorProvider provider, InternetProtocolFamily ipFamily)
Deprecated.NioServerSocketChannel(java.nio.channels.spi.SelectorProvider provider, InternetProtocolFamily family)
Deprecated.NioSocketChannel(java.nio.channels.spi.SelectorProvider provider, InternetProtocolFamily family)
Deprecated. -
Uses of InternetProtocolFamily in io.netty.channel.unix
Methods in io.netty.channel.unix with parameters of type InternetProtocolFamily Modifier and Type Method Description protected static int
Socket. newSocketDgram0(InternetProtocolFamily family)
Deprecated.protected static int
Socket. newSocketStream0(InternetProtocolFamily protocol)
Deprecated.static boolean
Socket. shouldUseIpv6(InternetProtocolFamily family)
Deprecated. -
Uses of InternetProtocolFamily in io.netty.handler.codec.dns
Constructors in io.netty.handler.codec.dns with parameters of type InternetProtocolFamily Constructor Description DefaultDnsOptEcsRecord(int maxPayloadSize, InternetProtocolFamily protocolFamily)
Deprecated. -
Uses of InternetProtocolFamily in io.netty.resolver.dns
Methods in io.netty.resolver.dns with parameters of type InternetProtocolFamily Modifier and Type Method Description static ResolvedAddressTypes
DnsNameResolverBuilder. computeResolvedAddressTypes(InternetProtocolFamily... internetProtocolFamilies)
-