aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/syncevent
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/syncevent
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/syncevent')
-rw-r--r--files/ja/web/api/syncevent/index.html54
-rw-r--r--files/ja/web/api/syncevent/lastchance/index.html44
-rw-r--r--files/ja/web/api/syncevent/registration/index.html28
-rw-r--r--files/ja/web/api/syncevent/syncevent/index.html42
-rw-r--r--files/ja/web/api/syncevent/tag/index.html48
5 files changed, 216 insertions, 0 deletions
diff --git a/files/ja/web/api/syncevent/index.html b/files/ja/web/api/syncevent/index.html
new file mode 100644
index 0000000000..cd45c94068
--- /dev/null
+++ b/files/ja/web/api/syncevent/index.html
@@ -0,0 +1,54 @@
+---
+title: SyncEvent
+slug: Web/API/SyncEvent
+tags:
+ - API
+ - Background Sync
+ - Interface
+ - Non-standard
+ - Offline
+ - Reference
+ - ServiceWorker
+ - SyncEvent
+ - Workers
+translation_of: Web/API/SyncEvent
+---
+<p>{{APIRef("Service Workers API")}} {{Non-standard_header}}</p>
+
+<p><span style="line-height: 19.0909080505371px;"><code><strong>SyncEvent</strong></code> インターフェイスは、 ServiceWorker の {{domxref("ServiceWorkerGlobalScope")}} でディスパッチされる同期アクションを表します。 </span></p>
+
+<p>このインターフェイスは {{domxref("ExtendableEvent")}} インターフェイスを継承しています。</p>
+
+<p>{{InheritanceDiagram(700, 60, 20)}}</p>
+
+<h2 id="コンストラクタ">コンストラクタ</h2>
+
+<dl>
+ <dt>{{domxref("SyncEvent.SyncEvent()")}}</dt>
+ <dd>新規の <code>SyncEvent</code> オブジェクトを作成します。</dd>
+</dl>
+
+<h2 id="プロパティ">プロパティ</h2>
+
+<p><em>祖先である {{domxref("Event")}}</em>. からプロパティを継承します。</p>
+
+<dl>
+ <dt>{{domxref("SyncEvent.tag")}} {{readonlyinline}}</dt>
+ <dd>この <code>SyncEvent</code> の開発者定義の識別子を返します。</dd>
+ <dt>{{domxref("SyncEvent.lastChance")}} {{readonlyinline}}</dt>
+ <dd>ユーザーエージェントが現在の試行の後に同期の試行をこれ以上行わない場合に <code>true</code> を返します。</dd>
+</dl>
+
+<h2 id="関数">関数</h2>
+
+<p><em>親である </em><em>{{domxref("ExtendableEvent")}}</em> から関数を継承します。</p>
+
+<p>無し。</p>
+
+<h2 id="ブラウザーの互換性">ブラウザーの互換性</h2>
+
+<div>
+
+
+<p>{{Compat("api.SyncEvent")}}</p>
+</div>
diff --git a/files/ja/web/api/syncevent/lastchance/index.html b/files/ja/web/api/syncevent/lastchance/index.html
new file mode 100644
index 0000000000..8571d82008
--- /dev/null
+++ b/files/ja/web/api/syncevent/lastchance/index.html
@@ -0,0 +1,44 @@
+---
+title: SyncEvent.lastChance
+slug: Web/API/SyncEvent/lastChance
+tags:
+ - API
+ - Background Sync
+ - Experimental
+ - Property
+ - Reference
+ - ServiceWorker
+ - SyncEvent
+ - lastChance
+translation_of: Web/API/SyncEvent/lastChance
+---
+<p>{{SeeCompatTable}}{{APIRef("")}}</p>
+
+<p>{{domxref("SyncEvent")}} インターフェイスの <strong><code>SyncEvent.lastChance</code></strong> 読み取り専用プロパティは、現在の試行後にユーザーエージェントが同期を試行しない場合に <code>true</code> を返します。 これは、 {{domxref("SyncEvent.SyncEvent","SyncEvent()")}} コンストラクタの <code>lastChance</code> パラメータに渡される値です。</p>
+
+<h2 id="構文">構文</h2>
+
+<pre class="syntaxbox notranslate">var <em>lastChance</em> = SyncEvent.lastChance</pre>
+
+<h3 id="値">値</h3>
+
+<p>{{jsxref("Boolean")}} は、現在の試行の後にユーザーエージェントがこれ以上同期を試行しないかどうかを示します。</p>
+
+<h2 id="仕様">仕様</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th>仕様</th>
+ </tr>
+ <tr>
+ <td><a href="https://wicg.github.io/background-sync/spec/#sync-event">Web Background Synchronization</a></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザー実装状況">ブラウザー実装状況</h2>
+
+
+
+<p>{{Compat("api.SyncEvent.lastChance")}}</p>
diff --git a/files/ja/web/api/syncevent/registration/index.html b/files/ja/web/api/syncevent/registration/index.html
new file mode 100644
index 0000000000..ff5b936140
--- /dev/null
+++ b/files/ja/web/api/syncevent/registration/index.html
@@ -0,0 +1,28 @@
+---
+title: registration
+slug: Web/API/SyncEvent/registration
+tags:
+ - DOM
+ - Junk
+ - Property
+translation_of: Web/API/SyncEvent/registration
+---
+<p style="line-height: 19.0909080505371px;">{{Non-standard_header}}{{APIRef("Service Workers API")}}</p>
+
+<p style="line-height: 19.0909080505371px;">{{domxref("SyncEvent")}} インターフェイスの登録読み取り専用プロパティは、 {{domxref("SyncRegistration")}} オブジェクトへの参照を返します。</p>
+
+<h2 id="構文" style="line-height: 19.0909080505371px;">構文</h2>
+
+<pre class="syntaxbox notranslate">var <em>syncReg</em> = SyncEvent.registration</pre>
+
+<h3 id="値">値</h3>
+
+<p>{{domxref("SyncRegistration")}} オブジェクト</p>
+
+<h2 id="ブラウザー実装状況">ブラウザー実装状況</h2>
+
+<div>
+
+
+<p>{{Compat("api.SyncEvent.registration")}}</p>
+</div>
diff --git a/files/ja/web/api/syncevent/syncevent/index.html b/files/ja/web/api/syncevent/syncevent/index.html
new file mode 100644
index 0000000000..b195429765
--- /dev/null
+++ b/files/ja/web/api/syncevent/syncevent/index.html
@@ -0,0 +1,42 @@
+---
+title: SyncEvent.SyncEvent()
+slug: Web/API/SyncEvent/SyncEvent
+tags:
+ - API
+ - Background Sync
+ - Constructor
+ - Experimental
+ - Reference
+ - ServiceWorker
+ - SyncEvent
+translation_of: Web/API/SyncEvent/SyncEvent
+---
+<p style="line-height: 19.0909080505371px;">{{APIRef("Service Workers API")}}{{Non-standard_header}}</p>
+
+<p style="line-height: 19.0909080505371px;"><strong><code>SyncEvent()</code></strong> コンストラクタは、新規の {{domxref("SyncEvent")}} オブジェクトを作成します。</p>
+
+<h2 id="構文" style="line-height: 19.0909080505371px;">構文</h2>
+
+<pre class="syntaxbox notranslate">var mySyncEvent = new SyncEvent(type, init)</pre>
+
+<h3 id="パラメータ">パラメータ</h3>
+
+<dl>
+ <dt><em>type</em></dt>
+ <dd>イベントの型。.</dd>
+ <dt><em>init</em> {{optional_inline}}</dt>
+ <dd>イベントオブジェクトに適用するカスタム設定を含むオプションオブジェクト。オプションは次の通りです:
+ <ul>
+ <li><code>tag</code>: この <code>SyncEvent</code> の開発者が定義した一意の識別子。</li>
+ <li><code>lastChance</code>: {{jsxref("Boolean")}} は、現在の試行後にユーザーエージェントが同期の試行をこれ以上行わないことを示しています。</li>
+ </ul>
+ </dd>
+</dl>
+
+<h2 id="ブラウザーの互換性">ブラウザーの互換性</h2>
+
+<div>
+
+
+<p>{{Compat("api.SyncEvent.SyncEvent")}}</p>
+</div>
diff --git a/files/ja/web/api/syncevent/tag/index.html b/files/ja/web/api/syncevent/tag/index.html
new file mode 100644
index 0000000000..7bf90de810
--- /dev/null
+++ b/files/ja/web/api/syncevent/tag/index.html
@@ -0,0 +1,48 @@
+---
+title: SyncEvent.tag
+slug: Web/API/SyncEvent/tag
+tags:
+ - API
+ - Background Sync
+ - Experimental
+ - Property
+ - Reference
+ - ServiceWorker
+ - SyncEvent
+ - tag
+translation_of: Web/API/SyncEvent/tag
+---
+<p>{{SeeCompatTable}}{{APIRef("")}}</p>
+
+<p>{{domxref("SyncEvent")}} インターフェイスの <strong><code>SyncEvent.tag</code></strong> 読み取り専用プロパティは、この <code>SyncEvent</code> の開発者定義の識別子を返します。これは、 {{domxref("SyncEvent.SyncEvent","SyncEvent()")}} コンストラクタの <code>tag</code> パラメータで渡される値です。</p>
+
+<h2 id="構文">構文</h2>
+
+<pre class="syntaxbox notranslate">var <em>tag</em> = SyncEvent.tag</pre>
+
+<h3 id="値">値</h3>
+
+<p>この <code>SyncEvent</code> の開発者定義の識別子。</p>
+
+<h2 id="仕様">仕様</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th>仕様</th>
+ <th>ステータス</th>
+ <th>備考</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('Background Sync','#sync-event', 'tag')}}</td>
+ <td>{{Spec2('Background Sync')}}</td>
+ <td>初回定義。</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザー実装状況">ブラウザー実装状況</h2>
+
+
+
+<p>{{Compat("api.SyncEvent.tag")}}</p>