After reading this blog post: http://www.sitepoint.com/javascript-shared-web-workers-html5/
I don't get it. What's the difference between a Worker and a SharedWorker?
|
After reading this blog post: http://www.sitepoint.com/javascript-shared-web-workers-html5/ I don't get it. What's the difference between a
| ||||
feedback
|
|
Very basic distinction: a | ||||
feedback
|
|
SharedWorker's seem to have more functionality then Worker. Among that functionality is :
W3C Spec: WHATWG Spec: | |||
|
feedback
|
|
A shared worker can work with multiple connections. It posts messages to ports to allow communication between various scripts. A dedicated worker on the other hand is simply tied to its main connection and cannot post messages to other scripts (workers). | |||
|
feedback
|
|
Only a shared WebWorker can be used to share live state like this: | |||
|
feedback
|