WWW-www.enlightenment.org pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=dff29b0b498b82f5f2db7a191b9d6dda3e903afc

commit dff29b0b498b82f5f2db7a191b9d6dda3e903afc
Author: Andrew Williams <[email protected]>
Date:   Fri Oct 20 11:08:15 2017 -0700

    Wiki page job changed with summary [Move Javascript docs to legacy API] by 
Andrew Williams
---
 pages/api/javascript/ecore/job.txt | 48 +-------------------------------------
 1 file changed, 1 insertion(+), 47 deletions(-)

diff --git a/pages/api/javascript/ecore/job.txt 
b/pages/api/javascript/ecore/job.txt
index d696ac88..d1354c42 100644
--- a/pages/api/javascript/ecore/job.txt
+++ b/pages/api/javascript/ecore/job.txt
@@ -1,47 +1 @@
-===== Javascript binding API - Ecore Job =====
-
-[[api:javascript:ecore|Back to the JS Ecore page]]
-
-**DRAFT**
-
-The Job module allows queuing work to be done when the current event is dealt 
with.
-
-Jobs are processed by the main loop similarly to events. They also will be 
executed in the order in which they were added.
-
-A good use for them is when you don't want to execute an action immediately, 
but want to give the control back to the main loop so that it will call your 
job callback when jobs start being processed (and if there are other jobs added 
before yours, they will be processed first). This also gives the chance to 
other actions in your program to cancel the job before it is started.
-
-==== Functions and methods ====
-
-=== add(callback) ===
-
-Syntax
-
-<code javascript>
-    function mycallback() { ... };
-    var job = efl.Ecore.Job.add(mycallback);
-</code>
-
-Parameters
-
-   * callback - A function to be called when the job is handled.
-
-Return value
-
-   * object - An object wrapping the newly added job.
-   * null - If it was not possible to add the job to the queue.
-
-Adds a job to the event queue.
-
-<note important>
-Once the job has been executed, the job object is invalid.
-</note>
-
-=== job.del() ===
-
-Syntax
-
-<code javascript>
-jobObj.del();
-</code>
-
-Deletes a job that has not been handled yet.
\ No newline at end of file
+This page is redirected to [[:develop:legacy:api:javascript:ecore:job]].
\ No newline at end of file

-- 


Reply via email to