Uses of Interface
io.netty.channel.socket.SocketChannel
-
Packages that use SocketChannel 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.io.netty.handler.ssl.ocsp Certificate validation using OCSPio.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 SocketChannel in io.netty.channel.epoll
Classes in io.netty.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.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement SocketChannel Modifier and Type Class Description class
KQueueSocketChannel
-
Uses of SocketChannel in io.netty.channel.socket
Constructors in io.netty.channel.socket with parameters of type SocketChannel Constructor Description DefaultSocketChannelConfig(SocketChannel channel, java.net.Socket javaSocket)
Creates a new instance. -
Uses of SocketChannel in io.netty.channel.socket.nio
Classes in io.netty.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.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement SocketChannel Modifier and Type Class Description class
OioSocketChannel
Deprecated.use NIO / EPOLL / KQUEUE transport.Constructors in io.netty.channel.socket.oio with parameters of type SocketChannel Constructor Description DefaultOioSocketChannelConfig(SocketChannel channel, java.net.Socket javaSocket)
Deprecated. -
Uses of SocketChannel in io.netty.channel.uring
Classes in io.netty.channel.uring that implement SocketChannel Modifier and Type Class Description class
IoUringSocketChannel
-
Uses of SocketChannel in io.netty.handler.ssl.ocsp
Methods in io.netty.handler.ssl.ocsp that return types with arguments of type SocketChannel Modifier and Type Method Description ChannelFactory<SocketChannel>
IoTransport. socketChannel()
Method parameters in io.netty.handler.ssl.ocsp with type arguments of type SocketChannel Modifier and Type Method Description static IoTransport
IoTransport. create(EventLoop eventLoop, ChannelFactory<SocketChannel> socketChannel, ChannelFactory<DatagramChannel> datagramChannel)
Create a newIoTransport
instance -
Uses of SocketChannel in io.netty.resolver.dns
Method parameters in io.netty.resolver.dns with type arguments of type SocketChannel Modifier and Type Method Description DnsNameResolverBuilder
DnsNameResolverBuilder. socketChannelFactory(ChannelFactory<? extends SocketChannel> channelFactory)
DnsNameResolverBuilder
DnsNameResolverBuilder. socketChannelFactory(ChannelFactory<? extends SocketChannel> channelFactory, boolean retryOnTimeout)
DnsNameResolverBuilder
DnsNameResolverBuilder. socketChannelType(java.lang.Class<? extends SocketChannel> channelType)
DnsNameResolverBuilder
DnsNameResolverBuilder. socketChannelType(java.lang.Class<? extends SocketChannel> channelType, boolean retryOnTimeout)
-