Uses of Class
io.netty.channel.epoll.AbstractEpollChannel
-
Packages that use AbstractEpollChannel Package Description io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance. -
-
Uses of AbstractEpollChannel in io.netty.channel.epoll
Subclasses of AbstractEpollChannel in io.netty.channel.epoll Modifier and Type Class Description class
AbstractEpollServerChannel
class
AbstractEpollStreamChannel
class
EpollDatagramChannel
DatagramChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.class
EpollDomainDatagramChannel
class
EpollDomainSocketChannel
class
EpollServerDomainSocketChannel
class
EpollServerSocketChannel
ServerSocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.class
EpollSocketChannel
SocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.Fields in io.netty.channel.epoll with type parameters of type AbstractEpollChannel Modifier and Type Field Description private IntObjectMap<AbstractEpollChannel>
EpollEventLoop. channels
Methods in io.netty.channel.epoll with parameters of type AbstractEpollChannel Modifier and Type Method Description (package private) void
EpollEventLoop. add(AbstractEpollChannel ch)
Register the given epoll with thisEventLoop
.(package private) void
EpollEventLoop. modify(AbstractEpollChannel ch)
The flags of the given epoll was modified so update the registration(package private) static java.util.Collection<java.net.InetAddress>
TcpMd5Util. newTcpMd5Sigs(AbstractEpollChannel channel, java.util.Collection<java.net.InetAddress> current, java.util.Map<java.net.InetAddress,byte[]> newKeys)
(package private) void
EpollEventLoop. remove(AbstractEpollChannel ch)
Deregister the given epoll from thisEventLoop
.Constructors in io.netty.channel.epoll with parameters of type AbstractEpollChannel Constructor Description EpollChannelConfig(AbstractEpollChannel channel)
EpollChannelConfig(AbstractEpollChannel channel, RecvByteBufAllocator recvByteBufAllocator)
EpollDomainSocketChannelConfig(AbstractEpollChannel channel)
EpollServerChannelConfig(AbstractEpollChannel channel)
-