Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. PeriodicSyncEvent

PeriodicSyncEvent

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimental:This is anexperimental technology
Check theBrowser compatibility table carefully before using this in production.

Note: This feature is only available inService Workers.

ThePeriodicSyncEvent interface of theWeb Periodic Background Synchronization API provides a way to run tasks in the service worker with network connectivity.

An instance of this event is passed to theperiodicsync handler. This happens periodically, at an interval greater than or equal to that set in thePeriodicSyncManager.register() method. Other implementation-specific factors such as the user's engagement with the site decide the actual interval.

Event ExtendableEvent PeriodicSyncEvent

Constructor

PeriodicSyncEvent()Experimental

Creates a newPeriodicSyncEvent object. This constructor is not typically used. The browser creates these objects itself and provides them toonperiodicsync callback.

Instance properties

Inherits properties from its parent,ExtendableEvent.

PeriodicSyncEvent.tagRead onlyExperimental

Returns the developer-defined identifier for thisPeriodicSyncEvent. Multiple tags can be used by the web app to run different periodic tasks at different frequencies.

Instance methods

Inherits methods from its parent,ExtendableEvent.

Examples

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

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

fetchAndCacheLatestNews is a developer defined function.

Specifications

Specification
Web Periodic Background Synchronization
# periodicsync-event

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp