chromium engine async functions

To discuss development of addons / skins / customization of MediaMonkey.

Moderators: jiri, drakinite, Addon Administrators

TIV73
Posts: 229
Joined: Sat Nov 12, 2011 1:31 pm

chromium engine async functions

Post by TIV73 »

Good evening,
currently, promises are extensively used in MediaMonkey due to the obvious benefits asynchronous workflows provide. A while ago, the chromium engine implemented async functions, which kind of extend the idea of promises. Unfortunately, those functions are currently not available in MediaMonkey since it uses version 53, which predates them.

These keywords can, by a large margin, improve readability for functions that heavily rely on promises. Plus, the chrome remote protocol (used here for example) needs async/await functionality to proper handle asynchronous calls. Right now, getting data from Mediamonkey to an external interface in an asynchronous workflow requires workarounds that are either hit or miss, or sacrifice performance for functionality.

Is there any chance we are going to see an upgrade to a more recent version of the chromium engine in MediaMonkey soon?
PetrCBR
Posts: 1763
Joined: Tue Mar 07, 2006 5:31 pm
Location: Czech
Contact:

Re: async functions

Post by PetrCBR »

We're updating chromium very often ... for now we're on 53 because they removed support for sync operations on XMLHttpRequest (we're using for loading scripts using requirejs and in webapp) in 54. We plan to make this sync loading using native code so probably we will update chromium in future.
How to make a debuglog - step 4b: viewtopic.php?f=30&t=86643
TIV73
Posts: 229
Joined: Sat Nov 12, 2011 1:31 pm

Re: chromium engine async functions

Post by TIV73 »

That's good to hear. Thanks for the update!
Post Reply