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.
Workers may in turn spawn new workers as long as those workers are hosted within the same origin as the parent page (Note: nested workers are currently not implemented in Blink). In addition workers may use XMLHttpRequest
for network I/O, with the stipulation that the responseXML
and channel
attributes on XMLHttpRequest
always return null
.
Not all interfaces and functions are available to the script associated with a Worker
.
In Firefox, if you want to use workers in extensions and would like to have access to js-ctypes, you should use the ChromeWorker
object instead.
Inherits properties from its parent, EventTarget
, and implements properties from AbstractWorker
.
AbstractWorker.onerror
EventListener
called whenever an ErrorEvent
of type error
bubbles through to the worker. This is inherited from AbstractWorker
.Worker.onmessage
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 data
property.Worker()
Inherits methods from its parent, EventTarget
, and implements properties from AbstractWorker
.
Worker.postMessage()
any
JavaScript object — to the worker's inner scope.Worker.terminate()
The following code snippet shows creation of a Worker
object using the Worker()
constructor and usage of the object:
var myWorker = new Worker('worker.js'); var first = document.querySelector('#number1'); var second = document.querySelector('#number2'); first.onchange = function() { myWorker.postMessage([first.value,second.value]); console.log('Message posted to worker'); }
For a full example, see ourBasic dedicated worker example (run dedicated worker).
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'Worker' in that specification. | Living Standard | No change from Web Workers. |
Web Workers The definition of 'Worker' in that specification. | Editor's Draft | Initial definition. |
Support varies for different types of workers. See each worker type's page for specifics.
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 4 | 3.5 | 10.0 | 10.6 | 4 |
Feature | Android | Firefox Mobile (Gecko) | Firefox OS (Gecko) | IE Phone | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | 4.4 | 3.5 | 1.0.1 | 10.0 | 11.5 | 5.1 | ? |
SharedWorker
and ServiceWorker.ChromeWorker
, used by extensions.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Worker