Description

Called when a write occurs on the descriptor.

Signature

write;

C information

EFL_LOOP_HANDLER_EVENT_WRITE(void)

C usage

static void
on_efl_loop_handler_event_write(void *data, const Efl_Event *event)
{
    void info = event->info;
    Eo *obj = event->object;
    Data *d = data;
 
    /* event hander code */
}
 
static void
setup_event_handler(Eo *obj, Data *d)
{
    efl_event_callback_add(obj, EFL_LOOP_HANDLER_EVENT_WRITE, on_efl_loop_handler_event_write, d);
}