What's the difference between Shared Worker and Worker in HTML5?

后端 未结 5 450
清歌不尽
清歌不尽 2020-12-07 20:20

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

5条回答
  •  一整个雨季
    2020-12-07 20:41

    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).

提交回复
热议问题