Tristan Caron
04/07/2017, 6:41 AMelizarov
04/07/2017, 6:53 AMThe data is copied rather than shared.Quote from: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers
Tristan Caron
04/07/2017, 7:38 AMThe worker context is represented by a DedicatedWorkerGlobalScope object in the case of dedicated workers (standard workers that are utilized by a single script; shared workers use SharedWorkerGlobalScope). A dedicated worker is only accessible from the script that first spawned it, whereas shared workers can be accessed from multiple scripts.
Tristan Caron
04/07/2017, 7:38 AMelizarov
04/07/2017, 7:40 AMelizarov
04/07/2017, 7:41 AMTristan Caron
04/07/2017, 7:47 AMbashor
04/07/2017, 8:43 AM