From f9189fea78ba638c81124fcdf4d1612139d6e913 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 14 Apr 2016 17:10:05 +0200 Subject: [PATCH] docs: add class and method parameter descriptions to ecore_idler class --- src/lib/ecore/ecore_idler.eo | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore/ecore_idler.eo b/src/lib/ecore/ecore_idler.eo index 1197baa090..bf25d4ae34 100644 --- a/src/lib/ecore/ecore_idler.eo +++ b/src/lib/ecore/ecore_idler.eo @@ -2,14 +2,19 @@ import ecore_types; class Ecore.Idler (Eo.Base) { + [[Setup callbacks to be called when the program is in idle state. + + Once the mainloop has called all enterer handlers it calls the registered + idler callbacks. + ]] eo_prefix: ecore_idler; methods { constructor { [[Constructor.]] legacy: null; params { - @in func: Ecore_Task_Cb; - @in data: const(void)*; + @in func: Ecore_Task_Cb; [[Idler callback function.]] + @in data: const(void)*; [[Private data passed to callback functions.]] } } }