stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=5a3af92e5b0392ffb1c23bba675e8d1fcd8b3162

commit 5a3af92e5b0392ffb1c23bba675e8d1fcd8b3162
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Thu Apr 14 18:17:01 2016 +0200

    docs: add description for class and method parameters
---
 src/lib/ecore/ecore_job.eo | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/lib/ecore/ecore_job.eo b/src/lib/ecore/ecore_job.eo
index 0c232f6..fac6b62 100644
--- a/src/lib/ecore/ecore_job.eo
+++ b/src/lib/ecore/ecore_job.eo
@@ -2,14 +2,20 @@ type @extern Ecore_Cb: __undefined_type;
 
 class Ecore.Job (Eo.Base)
 {
+   [[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.
+   ]]
+
    eo_prefix: ecore_job;
    methods {
       constructor {
          [[Constructor.]]
          legacy: null;
          params {
-            @in func: Ecore_Cb;
-            @in data: const(void)*;
+            @in func: Ecore_Cb; [[Ecore job to be queued callback function.]]
+            @in data: const(void)*; [[Private data passed to callback 
function.]]
          }
       }
    }

-- 


Reply via email to