I have the following web worker code and onMessage handler defined like this
var worker = new Worker('worker.js');
worker.addEventListener('message', function(e){
App.store.loadMany(App.Activity, e.data);
});
worker.postMessage(structure);
All my web worker code does in worker.js is invoke the onmessage callback and pass back the passed in objects:
self.addEventListener('message', function(e){
self.postMessage(e.data);
}, false);
I am a bit unsure if this code is multithreaded, I am thinking it is not and if I am wondering if I am gaining anything by doing it this way.