aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/performanceobserver/disconnect/index.html
blob: 460c876a2b0600b5105bf9705b86b68f0daea401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
title: PeformanceObserver.disconnect()
slug: Web/API/PerformanceObserver/disconnect
tags:
  - API
  - PerformanceObserver
  - Web パフォーマンス
  - disconnect()
  - オブザーバー
  - パフォーマンスオブザーバー API
  - メソッド
  - リファレンス
translation_of: Web/API/PerformanceObserver/disconnect
---
<div>{{APIRef("Performance Timeline API")}}</div>

<p>{{domxref('PerformanceObserver')}} インターフェイスの <strong><code>disconnect()</code></strong> メソッドは、パフォーマンスオブザーバーが{{domxref("PerformanceEntry","パフォーマンスエントリ", '', 'true')}}イベントを受け取らないようにするために使用されます。</p>

<h2 id="構文">構文</h2>

<pre class="syntaxbox"><em>performanceObserver</em>.disconnect();
</pre>

<h2 id="例"></h2>

<pre class="brush: js">var observer = new PerformanceObserver(function(list, obj) {
  var entries = list.getEntries();
  for (var i=0; i &lt; entries.length; i++) {
    // Process "mark" and "frame" events
  }
});
observer.observe({entryTypes: ["mark", "frame"]});

function perf_observer(list, observer) {
  // Process the "measure" event
  // ...
  // Disable additional performance events
  observer.disconnect();
}
var observer2 = new PerformanceObserver(perf_observer);
observer2.observe({entryTypes: ["measure"]});
</pre>

<h2 id="仕様">仕様</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">ステータス</th>
   <th scope="col">コメント</th>
  </tr>
  <tr>
   <td>{{SpecName('Performance Timeline Level 2', '#dom-performanceobserver-disconnect', 'disconnect()')}}</td>
   <td>{{Spec2('Performance Timeline Level 2')}}</td>
   <td><code>disconnect()</code> メソッドの初期定義</td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザの互換性">ブラウザの互換性</h2>

<div>
<p>{{Compat("api.PerformanceObserver.disconnect")}}</p>
</div>