Learn how to evaluate and integrate the VNC SDK

We're here if you need help.

EventLoopFd.Event

class vncsdk.EventLoopFd.Event

Enumeration of file descriptor events for event selection.

Enumeration Attributes

vncsdk.EventLoopFd.Event.READ

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

vncsdk.EventLoopFd.Event.WRITE

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

vncsdk.EventLoopFd.Event.EXCEPT

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

×