Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

ServiceWorkerState

This article needs a technical review. How you can help.

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.

The ServiceWorkerState is associated with its ServiceWorker's state.

Values

installing
The service worker in this state is considered an installing worker. During this state, ExtendableEvent.waitUntil() can be called inside the install event handler to extend the life of the installing worker until the passed promise resolves successfully. This is primarily used to ensure that the service worker is not active until all of the core caches are populated.
installed
The service worker in this state is considered a waiting worker.
activating
The service worker in this state is considered an active worker. During this state, ExtendableEvent.waitUntil() can be called inside the onactivate event handler to extend the life of the active worker until the passed promise resolves successfully. No functional events are dispatched until the state becomes activated.
activated
The service worker in this state is considered an active worker ready to handle functional events.
redundant
A new service worker is replacing the current service worker, or the current service worker is being discarded due to an install failure.

Specifications

Specification Status Comment
Service Workers
The definition of 'ServiceWorkerState' in that specification.
Working Draft Initial definition

Document Tags and Contributors

 Contributors to this page: rolfedh, g0ne
 Last updated by: rolfedh,