efl/src/lib/ecore/ecore_job.eo

30 lines
709 B
Plaintext
Raw Normal View History

type @extern Ecore_Cb: __undefined_type;
class Ecore.Job (Eo.Base)
2014-03-23 07:02:19 -07:00
{
[[Ecore Jobs are queued until the main loop dealt with the current event.
Jobs are processed by the main loop similarly to events. They also will
be executed in the order in which they were added.
]]
2014-03-23 07:02:19 -07:00
eo_prefix: ecore_job;
methods {
constructor {
2015-06-08 09:36:23 -07:00
[[Constructor.]]
legacy: null;
2014-03-23 07:02:19 -07:00
params {
@in func: Ecore_Cb; [[Ecore job to be queued callback function.]]
@in data: const(void)*; [[Private data passed to callback function.]]
2014-03-23 07:02:19 -07:00
}
}
}
implements {
Eo.Base.destructor;
Eo.Base.finalize;
2014-03-23 07:02:19 -07:00
}
constructors {
.constructor;
}
}