The ServiceWorker interface of the ServiceWorker API provides reference to a service worker. Multiple browsing contexts (e.g. workers, etc.) can be associated with the same service worker, through a unique ServiceWorker object.
The ServiceWorker interface of the ServiceWorker API provides reference to a service worker. Multiple browsing contexts (e.g. workers, etc.) can be associated with the same service worker, through a unique ServiceWorker object.
(onerror this)
Property.
The AbstractWorker.onerror property of the web.workers.AbstractWorker
represents an EventHandler
, that is a function to be called
the error event occurs and bubbles through the web.workers.Worker
.
myWorker.onerror = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/AbstractWorker/onerror
Property. The AbstractWorker.onerror property of the `web.workers.AbstractWorker` represents an `EventHandler`, that is a function to be called the error event occurs and bubbles through the `web.workers.Worker`. `myWorker.onerror = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AbstractWorker/onerror`
(onstatechange this)
Property.
[Read Only]
An web.other.EventListener
property called whenever an event
type statechange is fired; it is basically fired anytime the
changes.
ServiceWorker.onstatechange = function(statechangeevent) { ... } ServiceWorker.addEventListener('statechange', function(statechangeevent) { ... } )
See also: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/onstatechange
Property. [Read Only] An `web.other.EventListener` property called whenever an event type statechange is fired; it is basically fired anytime the changes. `ServiceWorker.onstatechange = function(statechangeevent) { ... } ServiceWorker.addEventListener('statechange', function(statechangeevent) { ... } )` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/onstatechange`
(script-url this)
Property.
[Read Only]
Returns the ServiceWorker serialized script URL defined as part ServiceWorkerRegistration. Must be on the same origin as the that registers the ServiceWorker.
someURL = ServiceWorker.scriptURL
See also: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/scriptURL
Property. [Read Only] Returns the ServiceWorker serialized script URL defined as part ServiceWorkerRegistration. Must be on the same origin as the that registers the ServiceWorker. `someURL = ServiceWorker.scriptURL` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/scriptURL`
(set-onerror! this val)
Property.
The AbstractWorker.onerror property of the web.workers.AbstractWorker
represents an EventHandler
, that is a function to be called
the error event occurs and bubbles through the web.workers.Worker
.
myWorker.onerror = function() { ... };
See also: https://developer.mozilla.org/en-US/docs/Web/API/AbstractWorker/onerror
Property. The AbstractWorker.onerror property of the `web.workers.AbstractWorker` represents an `EventHandler`, that is a function to be called the error event occurs and bubbles through the `web.workers.Worker`. `myWorker.onerror = function() { ... };` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AbstractWorker/onerror`
(state this)
Property.
[Read Only]
The state read-only property of the web.workers.ServiceWorker
returns a string representing the current state of the service
It can be one of the following values: installing, installed,
activated, or redundant.
someURL = ServiceWorker.state
See also: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/state
Property. [Read Only] The state read-only property of the `web.workers.ServiceWorker` returns a string representing the current state of the service It can be one of the following values: installing, installed, activated, or redundant. `someURL = ServiceWorker.state` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/state`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close