--- title: Web Periodic Background Synchronization API slug: Web/API/Web_Periodic_Background_Synchronization_API translation_of: Web/API/Web_Periodic_Background_Synchronization_API ---
{{securecontext_header}}
Web Periodic Background Synchonization APIは、 {{domxref('Service Worker API','service worker')}} 上で定期的にネットワーク通信ができる状況で走るタスクを登録する機能を提供します。それらのタスクを周期的なバックグラウンド同期リクエスト (periodic background sync requests) と呼びます。
Periodic Background Sync API により、ウェブアプリケーションが定期的にサービスワーカーにアップデートを行うよう知らせることができます。利用法としては、デバイスがWiFiに接続している間に最新のコンテンツを取得したり、アプリケーションをバックグラウンドでアップデートしたりすることが挙げられます。
APIが呼び出された際には最小の時間間隔がセットされますが、サービスワーカーがそのイベントを受け取るタイミングに影響を与える様々な要素をユーザーエージェントは考慮します。その要素には、例えばウェブサイトのエンゲージメントや特定のネットワークへの接続などがあります。
{{domxref('PeriodicSyncManager')}} インターフェースは {{domxref('ServiceWorkerRegistration.periodicSync')}} によって提供されます。一意のタグが sync イベントの 'name' として設定され、これは {{domxref('ServiceWorker')}} スクリプト内で取得することができます。イベントを受け取った際には、キャッシュのアップデートや新たなリソースの取得といった任意の利用可能な機能を実行することができます
このAPIはサービスワーカーに依存しているため、このAPIも安全なコンテクスト (secure context) でしか利用できません。
At the time of writing, the Web Periodic Background Synchronization API is only available through an installed Progressive Web App
The following additions to the {{domxref('Service Worker API')}} are specified in the Periodic Background Sync specification to provide an entry point for using Periodic Background Sync.
The following examples show how to use the interface.
The following asynchronous function registers a periodic background sync at a minimum interval of one day from a browsing context:
async function registerPeriodicNewsCheck() { const registration = await navigator.serviceWorker.ready; try { await registration.periodicSync.register('fetch-news', { minInterval: 24 * 60 * 60 * 1000, }); } catch { console.log('Periodic Sync could not be registered!'); } }
This code checks to see if a Periodic Background Sync task with a given tag is registered.
navigator.serviceWorker.ready.then(registration => { registration.periodicSync.getTags().then(tags => { if (tags.includes('get-latest-news')) skipDownloadingLatestNewsOnPageLoad(); }); });
The following code removes a Periodic Background Sync task to stop articles syncing in the background.
navigator.serviceWorker.ready.then(registration => { registration.periodicSync.unregister('get-latest-news'); });
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()); } });
Specification | Status | Comment |
---|---|---|
{{SpecName('Periodic Background Sync')}} | {{Spec2('Periodic Background Sync')}} | Initial definition. |
{{Compat("api.PeriodicSyncManager")}}