Results 81 - 100 of 123

ServiceWorkerRegistration.onupdatefound

The onupdatefound property of the ServiceWorkerRegistration interface is an EventListener property called whenever an event of type statechange is fired; it is fired any time the ServiceWorkerRegistration.installing property acquires a new service worker.
API onupdatefound Property Reference Référence Service Workers ServiceWorkerRegistration

ServiceWorkerRegistration.periodicSync

The periodicSync read-only property of the ServiceWorkerRegistration interface returns a reference to the PeriodicSyncManager interface, which manages periodic background synchronization processes.
API Experimental periodicSync PeriodicSyncManager Property Reference Service Workers ServiceWorkerRegistration

ServiceWorkerRegistration.pushManager

The pushManager property of the ServiceWorkerRegistration interface returns a reference to the PushManager interface for managing push subscriptions; this includes support for subscribing, getting an active subscription, and accessing push permission status.
API Property Push PushManager Reference Service Workers ServiceWorkerRegistration

ServiceWorkerRegistration.sync

The sync property of the ServiceWorkerRegistration interface returns a reference to the SyncManager interface, which manages background synchronization processes.
API Experimental Property Reference Service Workers ServiceWorkerRegistration Sync sync

ServiceWorkerRegistration.update()

The update method of the ServiceWorkerRegistration interface attempts to update the service worker. It fetches the worker's script URL, and if the new worker is not byte-by-byte identical to the current worker, it installs the new worker. The fetch of the worker bypasses any browser caches if the previous fetch occurred over 24 hours ago.
API Method Reference Service Workers ServiceWorkerRegistration Update update

ServiceWorkerRegistration.waiting

The waiting property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is installed. This property is initially set to null.
API Property Reference Référence Service Workers ServiceWorkerRegistration waiting

Web Workers API

Web Workers are a mechanism by which a script operation can be made to run in a background thread separate from the main execution thread of a web application. The advantage of this is that laborious processing can be performed in a separate thread, allowing the main (usually the UI) thread to run without being blocked/slowed down.
API Service Workers Shared Workers Web Workers Workers