Uses of Interface
io.netty5.channel.socket.SocketChannel
-
Packages that use SocketChannel Package Description io.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.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 SocketChannel in io.netty5.channel.epoll
Classes in io.netty5.channel.epoll that implement SocketChannel Modifier and Type Class Description class
EpollSocketChannel
SocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. -
Uses of SocketChannel in io.netty5.channel.kqueue
Classes in io.netty5.channel.kqueue that implement SocketChannel Modifier and Type Class Description class
KQueueSocketChannel
SocketChannel
implementation that uses KQueue. -
Uses of SocketChannel in io.netty5.channel.socket.nio
Classes in io.netty5.channel.socket.nio that implement SocketChannel Modifier and Type Class Description class
NioSocketChannel
SocketChannel
which uses NIO selector based implementation. -
Uses of SocketChannel in io.netty5.resolver.dns
Method parameters in io.netty5.resolver.dns with type arguments of type SocketChannel Modifier and Type Method Description DnsNameResolverBuilder
DnsNameResolverBuilder. socketChannelFactory(ChannelFactory<? extends SocketChannel> channelFactory)
DnsNameResolverBuilder
DnsNameResolverBuilder. socketChannelType(Class<? extends SocketChannel> channelType)
-