~~Title: Efl.Loop: poll,high~~ ===== Description ===== %%Event occurs multiple times per second. The exact tick is undefined and can be adjusted system-wide.%% //Since 1.22// {{page>:develop:api-include:efl:loop:event:poll_high:description&nouser&nolink&nodate}} ===== Signature ===== poll,high; ===== C information ===== EFL_LOOP_EVENT_POLL_HIGH(void) ===== C usage ===== static void on_efl_loop_event_poll_high(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_EVENT_POLL_HIGH, on_efl_loop_event_poll_high, d); }