You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I call this function in the startup of my app. I expect it to run and loop. The Async task I would assume would execute and then continue on but once the asyncGameUpdater runs, it stops the processing.
function gameUpdateTask(){
var asyncGameUpdater = Async.wrap(gameUpdater);
asyncGameUpdater();
var i=0;
while (i < config.openInAdvance){
syncGameUpdater();
i++;
}
}
The text was updated successfully, but these errors were encountered:
I call this function in the startup of my app. I expect it to run and loop. The Async task I would assume would execute and then continue on but once the asyncGameUpdater runs, it stops the processing.
The text was updated successfully, but these errors were encountered: