Learn how to evaluate and integrate the VNC SDK

We're here if you need help.

EventLoopFd.Event

enum EventLoopFd.Event

Enumeration of file descriptor events for event selection.

For more information, see vnc_EventLoopFd_Event in the C API documentation.

Fields

EventLoopFd.Event.Zero

No Event bits set.

EventLoopFd.Event.Read

Monitor using readfds with select() (the second argument), or POLLIN with poll().

EventLoopFd.Event.Write

Monitor using writefds with select() (the third argument), or POLLOUT with poll().

EventLoopFd.Event.Except

Monitor using exceptfds with select() (the fourth argument), or POLLPRI with poll().

×