Liking cljdoc? Tell your friends :D

web.deprecated.ServiceWorkerMessageEvent

The ServiceWorkerMessageEvent interface of the ServiceWorker contains information about an event sent to aweb.workers.ServiceWorkerContainerThis extends the default message event to allow setting aweb.workers.ServiceWorker` as the source of a message. The event object is accessed via handler function of a message event, when fired by a message from a service worker.

The ServiceWorkerMessageEvent interface of the `ServiceWorker
contains information about an event sent to a `web.workers.ServiceWorkerContainer`
This extends the default message event to allow setting a `web.workers.ServiceWorker`
as the source of a message. The event object is accessed via
handler function of a message event, when fired by a message
from a service worker.
raw docstring

constructorcljs

(constructor & args)

Constructor.

The ServiceWorkerMessageEvent() constructor creates a new web.deprecated.ServiceWorkerMessageEvent object instance.

type A web.DOMString that 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 type. origin: A web.DOMString that defines the origin of the corresponding service worker's environment settings object. lastEventId: A web.DOMString that defines the last event ID of the event source. source: The web.workers.ServiceWorker or web.other.MessagePort that sent the message. ports: An array containing the web.other.MessagePort objects connected to the channel sending the message.

See also: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/ServiceWorkerMessageEvent

Constructor.

The ServiceWorkerMessageEvent() constructor creates a new `web.deprecated.ServiceWorkerMessageEvent` object instance.

type
A `web.DOMString` that 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 type.
origin: A `web.DOMString` that defines the origin of the corresponding service worker's environment settings object.
lastEventId: A `web.DOMString` that defines the last event ID of the event source.
source: The `web.workers.ServiceWorker` or `web.other.MessagePort` that sent the message.
ports: An array containing the `web.other.MessagePort` objects connected to the channel sending the message.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/ServiceWorkerMessageEvent`
sourceraw docstring

datacljs

(data this)

Property.

[Read Only] [Deprecated]

The data read-only property of the web.deprecated.ServiceWorkerMessageEvent returns the event's data. It can be any data type.

var myData = ServiceWorkerMessageEventInstance.data;

See also: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/data

Property.

[Read Only]
[Deprecated]

The data read-only property of the `web.deprecated.ServiceWorkerMessageEvent`
returns the event's data. It can be any data type.

`var myData = ServiceWorkerMessageEventInstance.data;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/data`
sourceraw docstring

last-event-idcljs

(last-event-id this)

Property.

[Read Only] [Deprecated]

The lastEventID read-only property of the web.deprecated.ServiceWorkerMessageEvent represents, in server-sent events, the last event ID of the event

var myLastEventId = ServiceWorkerMessageEventInstance.lastEventId;

See also: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/lastEventId

Property.

[Read Only]
[Deprecated]

The lastEventID read-only property of the `web.deprecated.ServiceWorkerMessageEvent`
represents, in server-sent events, the last event ID of the event

`var myLastEventId = ServiceWorkerMessageEventInstance.lastEventId;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/lastEventId`
sourceraw docstring

origincljs

(origin this)

Property.

[Read Only] [Deprecated]

The origin read-only property of the web.deprecated.ServiceWorkerMessageEvent returns the origin of the service worker's environment settings

var myOrigin = ServiceWorkerMessageEventInstance.origin;

See also: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/origin

Property.

[Read Only]
[Deprecated]

The origin read-only property of the `web.deprecated.ServiceWorkerMessageEvent`
returns the origin of the service worker's environment settings

`var myOrigin = ServiceWorkerMessageEventInstance.origin;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/origin`
sourceraw docstring

portscljs

(ports this)

Property.

[Read Only] [Deprecated]

The ports read-only property of the web.deprecated.ServiceWorkerMessageEvent returns an array of web.other.MessagePort objects connected the message channel the message is being sent through.

var myPorts = ServiceWorkerMessageEventInstance.ports;

See also: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/ports

Property.

[Read Only]
[Deprecated]

The ports read-only property of the `web.deprecated.ServiceWorkerMessageEvent`
returns an array of `web.other.MessagePort` objects connected
the message channel the message is being sent through.

`var myPorts = ServiceWorkerMessageEventInstance.ports;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/ports`
sourceraw docstring

sourcecljs

(source this)

Property.

[Read Only] [Deprecated]

The source read-only property of the web.deprecated.ServiceWorkerMessageEvent a reference to the web.workers.ServiceWorker object of the service worker that sent the message.

var mySource = ServiceWorkerMessageEventInstance.source;

See also: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/source

Property.

[Read Only]
[Deprecated]

The source read-only property of the `web.deprecated.ServiceWorkerMessageEvent`
a reference to the `web.workers.ServiceWorker` object of the
service worker that sent the message.

`var mySource = ServiceWorkerMessageEventInstance.source;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerMessageEvent/source`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close