The ExtendableMessageEvent() constructor creates a new ExtendableMessageEvent object instance.
Syntax
var extendableMessageEvent = new ExtendableMessageEvent(type, init);
Parameters
- type
- A
DOMStringthat defines the type of the message event being created. - init Optional
- An initialisation object, which should contain the following parameters:
data: The event's data — this can be any data type.origin: ADOMStringthat defines the origin of the corresponding service worker's environment settings object.lastEventId: ADOMStringthat defines the last event ID of the event source.source: TheClient,ServiceWorkerorMessagePortthat sent the message.ports: An array containing theMessagePortobjects connected to the channel sending the message.
Examples
var init = {
data : 'hello message',
source : MessagePortReference,
ports : MessagePortListReference
}
var myEME = new ExtendableMessageEvent('message', init);
Specifications
| Specification | Status | Comment |
|---|---|---|
| Service Workers The definition of 'ExtendableMessageEvent()' in that specification. |
Working Draft | Initial definition. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
ExtendableMessageEvent() constructor | Chrome ? | Edge ? | Firefox
Full support
45
| IE No support No | Opera ? | Safari No support No | WebView Android No support No | Chrome Android ? | Firefox Android Full support 45 | Opera Android ? | Safari iOS No support No | Samsung Internet Android ? |
Legend
- Full support
- Full support
- No support
- No support
- Compatibility unknown
- Compatibility unknown
- Experimental. Expect behavior to change in the future.
- Experimental. Expect behavior to change in the future.
- See implementation notes.
- See implementation notes.
