Uses of Class
io.netty.channel.epoll.EpollIoOps
-
Packages that use EpollIoOps Package Description io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance. -
-
Uses of EpollIoOps in io.netty.channel.epoll
Fields in io.netty.channel.epoll declared as EpollIoOps Modifier and Type Field Description static EpollIoOps
EpollIoOps. EPOLLERR
Error condition happened on the associated file descriptor.static EpollIoOps
EpollIoOps. EPOLLET
static EpollIoOps
EpollIoOps. EPOLLIN
Interested in IO events which should be handled by finish pending connect operationsstatic EpollIoOps
EpollIoOps. EPOLLOUT
Interested in IO events which tell that the underlying channel is writable again or a connection attempt can be continued.static EpollIoOps
EpollIoOps. EPOLLRDHUP
Interested in IO events which should be handled by reading data.Methods in io.netty.channel.epoll that return EpollIoOps Modifier and Type Method Description EpollIoOps
EpollIoEvent. ops()
Returns theEpollIoOps
which did trigger theEpollIoEvent
.static EpollIoOps
EpollIoOps. valueOf(int value)
Returns aEpollIoOps
for the given value.EpollIoOps
EpollIoOps. with(EpollIoOps ops)
Return aEpollIoOps
which is a combination of the current and the givenEpollIoOps
.EpollIoOps
EpollIoOps. without(EpollIoOps ops)
Return aEpollIoOps
which is not a combination of the current and the givenEpollIoOps
.Methods in io.netty.channel.epoll with parameters of type EpollIoOps Modifier and Type Method Description boolean
EpollIoOps. contains(EpollIoOps ops)
EpollIoOps
EpollIoOps. with(EpollIoOps ops)
Return aEpollIoOps
which is a combination of the current and the givenEpollIoOps
.EpollIoOps
EpollIoOps. without(EpollIoOps ops)
Return aEpollIoOps
which is not a combination of the current and the givenEpollIoOps
.
-