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
Right now we are using the default simple job queue provided with Boa. This queue is apparently very simple, I believe it just takes tasks and executes them to completion one by one. The queue will not behave like other JS job queue, meaning our async/promise code probably deviates in major ways from the other JS engines. Apparently this is not part of the ECMAScript standard. We might not even have concurrency, I am not sure.
It would be great if Boa could provide a more complicated queue, but I'm not sure how long we would have to wait. Also, I'm not sure the simple queue is inadequate at this point. It seems to be working well for people, I just don't know when it would break down and why.
The text was updated successfully, but these errors were encountered:
Right now we are using the default simple job queue provided with Boa. This queue is apparently very simple, I believe it just takes tasks and executes them to completion one by one. The queue will not behave like other JS job queue, meaning our async/promise code probably deviates in major ways from the other JS engines. Apparently this is not part of the ECMAScript standard. We might not even have concurrency, I am not sure.
It would be great if Boa could provide a more complicated queue, but I'm not sure how long we would have to wait. Also, I'm not sure the simple queue is inadequate at this point. It seems to be working well for people, I just don't know when it would break down and why.
The text was updated successfully, but these errors were encountered: