Uses of Class
io.netty.channel.epoll.EpollEventArray
-
Packages that use EpollEventArray Package Description io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance. -
-
Uses of EpollEventArray in io.netty.channel.epoll
Fields in io.netty.channel.epoll declared as EpollEventArray Modifier and Type Field Description private EpollEventArray
EpollEventLoop. events
Methods in io.netty.channel.epoll with parameters of type EpollEventArray Modifier and Type Method Description static int
Native. epollBusyWait(FileDescriptor epollFd, EpollEventArray events)
Non-blocking variant ofNative.epollWait(FileDescriptor, EpollEventArray, FileDescriptor, int, int)
that will also hint to processor we are in a busy-wait loop.(package private) static int
Native. epollWait(FileDescriptor epollFd, EpollEventArray events, boolean immediatePoll)
(package private) static int
Native. epollWait(FileDescriptor epollFd, EpollEventArray events, int timeoutMillis)
This uses epoll's own timeout and does not reset/re-arm any timerfdstatic int
Native. epollWait(FileDescriptor epollFd, EpollEventArray events, FileDescriptor timerFd, int timeoutSec, int timeoutNs)
Deprecated.this method is no longer supported.(package private) static long
Native. epollWait(FileDescriptor epollFd, EpollEventArray events, FileDescriptor timerFd, int timeoutSec, int timeoutNs, long millisThreshold)
private boolean
EpollEventLoop. processReady(EpollEventArray events, int ready)
-