Firefox Tomorrow

web api event

ServiceWorkerGlobalScope: periodicsync event

View on MDN ↗

Limited availabilitySecure contextAvailable in workers

The periodicsync event of the ServiceWorkerGlobalScope interface is fired at timed intervals, specified when registering a PeriodicSyncManager.

This event is not cancelable and does not bubble.

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

addEventListener("periodicsync", (event) => { })

onperiodicsync = (event) => { }

Event type

A PeriodicSyncEvent. Inherits from Event.

Examples

The following example shows how to respond to a periodic sync event in the service worker.

self.addEventListener("periodicsync", (event) => {
  if (event.tag === "get-latest-news") {
    event.waitUntil(fetchAndCacheLatestNews());
  }
});

You can also set up the event handler using the onperiodicsync property:

self.onperiodicsync = (event) => {
  // …
};

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also