Re: web Worker API suggestion

Hey Andre!
The issue with this is that it would not be obvious that you are unable to pass objects from the current scope into the worker (which would break the entire purpose of having a fast codepath in another thread). You can construct one from a string, however. You just need to wrap it up like a file<https://stackoverflow.com/questions/10343913/how-to-create-a-web-worker-from-a-string>


cheers

patrick

________________________________
From: Andre Venancio <info@andrevenancio.com>
Sent: Friday, May 11, 2018 9:25 AM
To: public-webapps@w3.org
Subject: web Worker API suggestion

Hi,
Not sure this is the best email to contact you guys regarding an API suggestion, but here it goes:


I've been thinking about this for a while now, and I think it would be beneficial to update the Worker api to allow you to pass a IIFI function instead of a external file?

From: current Worker API:

const worker = new Worker('lame.js');
worker.onmessage = (e) => {
console.log(e);
};

// lame.js
this.addEventListener('message', (e) => {
this.postMessage({ message: 'hello back' });
});


to

const worker = new Worker(() => {
this.addEventListener('message', (e) => {
this.postMessage({ message: 'hello back' });
});
});
worker.onmessage = (e) => {
console.log(e);
};


Wouldn't this be better?

Thanks
Andre

Received on Sunday, 13 May 2018 20:07:40 UTC