Class EpollIoOps

java.lang.Object
io.netty.channel.epoll.EpollIoOps
All Implemented Interfaces:
IoOps

public final class EpollIoOps extends Object implements IoOps
Implementation of IoOps that is used by EpollIoHandler and so for epoll based transports.
  • Field Details

    • EPOLLOUT

      public static final EpollIoOps EPOLLOUT
      Interested in IO events which tell that the underlying channel is writable again or a connection attempt can be continued.
    • EPOLLIN

      public static final EpollIoOps EPOLLIN
      Interested in IO events which should be handled by finish pending connect operations
    • EPOLLERR

      public static final EpollIoOps EPOLLERR
      Error condition happened on the associated file descriptor.
    • EPOLLRDHUP

      public static final EpollIoOps EPOLLRDHUP
      Interested in IO events which should be handled by reading data.
    • EPOLLET

      public static final EpollIoOps EPOLLET
  • Method Details