Wiki page idle changed with summary [] by Lauro Moura

This commit is contained in:
Lauro Moura 2015-12-10 19:05:28 -08:00 committed by apache
parent b704eae946
commit d5b17ef407
1 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ Add an idler handle to the event loop, returning a handle on success and NULL ot
Idlers are useful for progressively processing data without blocking.
</note>
=== addEnterer(args) ===
=== addEnterer(callback) ===
Syntax
@ -68,7 +68,7 @@ Add an idle enterer handler.
The function func will be called every time the main loop is **entering idle state**, as long as it returns 1 (or ''efl.Ecore.Mainloop.CALLBACK_RENEW''). A return of 0 (or ''efl.Ecore.Mainloop.CALLBACK_CANCEL'') deletes the idle enterer.
</note>
=== addEntererBefore(args) ===
=== addEntererBefore(callback) ===
Syntax
@ -91,7 +91,7 @@ Add an idle enterer handler at the start of the list so it gets called earlier t
The function func will be called every time the main loop is **entering idle state**, as long as it returns 1 (or ''efl.Ecore.Mainloop.CALLBACK_RENEW''). A return of 0 (or ''efl.Ecore.Mainloop.CALLBACK_CANCEL'') deletes the idle enterer.
</note>
=== addExiter(args) ===
=== addExiter(callback) ===
Syntax