what's the current opinion about async functions? For example, if I define a fetch function in an interface, then on the js host side that would have to be async so it can return the received bytes
I found this https://github.com/bytecodealliance/jco/issues/39 and I hope that's not the final decision, or else how do I achieve an interface function that fetches an url and returns the data it read?
the atomics solution mentioned in the issue would work for me since I already run my jco transpiled component in a worker, but it's important to note that Atomics.wait() is usually forbidden on the main thread
Ramon Klass said:
the atomics solution mentioned in the issue would work for me since I already run my jco transpiled component in a worker, but it's important to note that Atomics.wait() is usually forbidden on the main thread
@Ramon Klass I'd be curious to take a look at your design here, mind sharing a link to it please?
Last updated: Nov 22 2024 at 16:03 UTC