DedicatedWorkerGlobalScope: message event
The message event is fired on a DedicatedWorkerGlobalScope object when the worker receives a message from its parent (i.e. when the parent sends a message using Worker.postMessage()).
This event is not cancellable and does not bubble.
Syntax
Use the event name in methods like addEventListener(), or set an event handler property.
addEventListener('message', event => { });
onmessage = event => { };
Event type
An MessageEvent. Inherits from Event.
Event properties
This interface also inherits properties from its parent, Event.
MessageEvent.dataRead only-
The data sent by the message emitter.
MessageEvent.originRead only-
A
USVStringrepresenting the origin of the message emitter. MessageEvent.lastEventIdRead only-
A
DOMStringrepresenting a unique ID for the event. MessageEvent.sourceRead only-
A
MessageEventSource(which can be aWindowProxy,MessagePort, orServiceWorkerobject) representing the message emitter. MessageEvent.portsRead only-
An array of
MessagePortobjects representing the ports associated with the channel the message is being sent through (where appropriate, e.g. in channel messaging or when sending a message to a shared worker).
Example
The following code snippet shows creation of a Worker object using the Worker() constructor. Messages are passed to the worker when the value inside the form input first changes. An onmessage handler is also present, to deal with messages are passed back from the worker.
// main.js
var myWorker = new Worker("worker.js");
first.onchange = function() {
myWorker.postMessage([first.value, second.value]);
console.log('Message posted to worker');
}
// worker.js
self.onmessage = function(e) {
console.log('Message received from main script');
var workerResult = 'Result: ' + (e.data[0] * e.data[1]);
console.log('Posting message back to main script');
postMessage(workerResult);
}
In the main.js script, an onmessage handler is used to handle messages from the worker script:
// main.js
myWorker.onmessage = function(e) {
result.textContent = e.data;
console.log('Message received from worker');
}
Alternatively, the script can listen for the message using addEventListener():
// worker.js
self.addEventListener('message', function(e) {
result.textContent = e.data;
console.log('Message received from worker');
}
Notice how in the main script, onmessage has to be called on myWorker, whereas inside the worker script you just need onmessage because the worker is effectively the global scope (DedicatedWorkerGlobalScope).
For a full example, see our Basic dedicated worker example (run dedicated worker).
Specifications
| Specification |
|---|
| HTML Standard # event-message |
Browser compatibility
BCD tables only load in the browser