efl/src/lib/ecore/efl_loop.eo

68 lines
2.6 KiB
Plaintext
Raw Normal View History

class Efl.Loop (Eo.Base)
{
[[The Efl Main Loop
Efl main loop provide a clean and tiny event loop library with many modules to
do lots of convenient things for a programmer, to save time and effort. It's
small and lean, designed to work from embedded systems all the way up to large
and powerful multi-cpu workstations. The main loop has a number of primitives to
be used with its main loop. It serializes all the primitives and allows for
great responsiveness without the need for threads (or any other concurrency), but
provide them if you need to.
]]
methods {
iterate {
[[Runs a single iteration of the main loop to process everything on the
queue.]]
}
iterate_may_block {
[[Runs a single iteration of the main loop to process everything on the
queue with block/non-blocking status.]]
return: int;
params {
may_block: int; [[A flag if the main loop has a possibility of blocking.]]
}
}
begin {
[[Runs the application main loop.]]
}
quit {
[[Quits the main loop once all the events currently on the queue have
been processed.]]
}
2016-04-26 12:56:53 -07:00
job {
[[Will execute that promise in the near future.]]
params {
@in data: const(void_ptr) @optional; [[The data to be given when the promise is done.]]
2016-05-04 14:44:56 -07:00
}
return: promise<void_ptr>; [[The promise that will be triggered.]]
2016-05-04 14:44:56 -07:00
}
timeout {
[[Will trigger this promise when the specified timeout occur.]]
params {
@in time: double; [[The time from now in second that the main loop will wait before triggering it.]]
@in data: const(void_ptr) @optional; [[The data to be given when the promise is done.]]
2016-04-26 12:56:53 -07:00
}
return: promise<void_ptr>; [[The promise that will be triggered.]]
}
args_add {
[[Add a new set of arguments to the loop that makes an args event.]]
params {
argc: int; [[The number of strings in the argv array.]]
argv: string*; [[The array of argument strings.]]
}
2016-04-26 12:56:53 -07:00
}
}
2014-07-31 22:38:40 -07:00
events {
idle,enter @restart; [[Event occurs once the main loop enters the idle state.]]
idle,exit @restart; [[Event occurs once the main loop exits the idle state.]]
idle @restart; [[Event occurs once the main loop is idler. Be carefull, this will spin your CPU high if you keep listening on this event.]]
args: Efl.Loop.Args; [[Event happens when args are provided to the loop by args_add().]]
2014-07-31 22:38:40 -07:00
/* TODO: All of the legacy ecore events. (Ecore.h header) */
}
implements {
Eo.Base.constructor;
Eo.Base.provider_find;
}
}