You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Michael Brooks (JIRA)" <ji...@apache.org> on 2013/05/23 01:17:20 UTC

[jira] [Created] (CB-3460) Serialize module event hooks

Michael Brooks created CB-3460:
----------------------------------

             Summary: Serialize module event hooks
                 Key: CB-3460
                 URL: https://issues.apache.org/jira/browse/CB-3460
             Project: Apache Cordova
          Issue Type: Bug
          Components: CLI
    Affects Versions: 2.8.0
            Reporter: Michael Brooks
            Assignee: Filip Maj


When using {{cordova-cli}} as a module, a task execute immediately and does not wait for each event hook to complete.

We need to update the hook module to serialize each listener subscribed to an event hook. A {{done}} callback can be passed into each event listener to support asynchronous hooks.

{code}
cordova.on('before_build', function(data, done) {
   // do something
   done();
});
{code}

There is no need to update the script hooks because they currently wait for each process to exit before continuing.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira