Description

Called when the task exits. You can pick up any information you need at this point such as exit_code etc.

Since 1.22

Signature

exit;

C information

C usage

static void
on_efl_task_event_exit(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_TASK_EVENT_EXIT, on_efl_task_event_exit, d);
}