This question is locked. New answers and comments are not allowed.
Hello,
i found an unexpected behavior on syncEnd event of the sync process.
In short, if i handle the beforeExecute event and cancel some request...
everlive.on('beforeExecute', function(eventQuery) { if (eventQuery.isSync && /* some logic */) { eventQuery.cancel(); }});the syncEnd event will not raised if all requests have been cancelled.
But i think this is not correct, because the syncStart event has been raised.
