EventLoop_IoEvents Enum

Header: #include <applibs/eventloop.h>

A bitmask of the I/O events that can be captured by the EventLoop object.

typedef uint32_t EventLoop_IoEvents;
enum {
    EventLoop_Input = 0x01,
    EventLoop_Output = 0x04,
    EventLoop_Error = 0x08,
};

Members

EventLoop_Input

The descriptor is available for read operations.

EventLoop_Output

The descriptor is available for write operations.

EventLoop_Error

The descriptor experienced an error. The EventLoop always reports this event independently of the bitmask passed to EventLoop_RegisterIo.