The Worker
interface of the Web Workers API represents a background task that can be easily created and can send messages back to its creator. Creating a worker is as simple as calling the Worker()
constructor and specifying a script to be run in the worker thread.
Documentation Worker by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See:
Constructor
Variables
An EventListener
called whenever a MessageEvent
of type message
bubbles through the worker — i.e. when a message is sent to the parent document from the worker via DedicatedWorkerGlobalScope.postMessage
. The message is stored in the event's MessageEvent.data
property.