Hi, I have the following line in my initialization function: g_messaging->Register(extension, handle_message);
where g_messaging is from XW_MessagingInterface type. According to the documentation in the header file this function (handle_message) should be an called as an asynchronous messaging function and can be called in parallel form Javascript part. What happens is that even that calls in javascript that are fired using setTimeout JS function are being called serially one by one where the second one is called totally when the first one finishes its processing. I've tried solving this by using std::thread for each task depending on the fact the PostMessage function (XW_MessagingInterface_1::PostMessage) - but this caused a crash in the extension. How could I use asynchronous messaging in Crosswalk extension? Thanks, Abed --------------------------------------------------------------------- Intel Israel (74) Limited This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies.
_______________________________________________ Crosswalk-help mailing list [email protected] https://lists.crosswalk-project.org/mailman/listinfo/crosswalk-help
