Documentation
¶
Index ¶
Constants ¶
View Source
const ( // ExceptionEvents represents problematic epoll events. ExceptionEvents = unix.EPOLLHUP | unix.EPOLLRDHUP | unix.EPOLLERR // read end closed // ReadEvents represents read epoll events. ReadEvents = ExceptionEvents | unix.EPOLLIN | unix.EPOLLPRI //exceptional condition, visit https://man7.org/linux/man-pages/man2/poll.2.html // WriteEvents represents write epoll events. WriteEvents = ExceptionEvents | unix.EPOLLOUT // associated file is available for write operation // ReadWriteEvents represents both read and write epoll events. ReadWriteEvents = ReadEvents | WriteEvents )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.