aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/performanceobserver/disconnect/index.html
blob: d4e509708b982201409b3adee12519a4846c6141 (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
66
---
title: PeformanceObserver.disconnect()
slug: Web/API/PerformanceObserver/disconnect
tags:
  - API
  - Method
  - Méthode
  - Performance Observer API
  - PerformanceObserver
  - Reference
  - Performance Web
  - disconnect()
  - observers
translation_of: Web/API/PerformanceObserver/disconnect
---
<div>{{APIRef("Performance Timeline API")}}</div>

<p>La méthode <strong><code>disconnect()</code></strong> de l'interface <a href="/fr/docs/Web/API/PerformanceObserver"><code>PerformanceObserver</code></a> est utilisée pour empêcher l'observateur de performances de recevoir tout événement <a href="/fr/docs/Web/API/PerformanceEntry">d'entrée de performance</a>.</p>

<h2 id="Syntax">Syntaxe</h2>

<pre class="brush: js"><var>performanceObserver</var>.disconnect();</pre>

<h2 id="Example">Exemple</h2>

<pre class="brush: js">const observer = new PerformanceObserver(function(list, obj) {
  let entries = list.getEntries();
  for (let i=0; i &lt; entries.length; i++) {
    // Traiter les événements "mark" et "frame"
  }
});
observer.observe({entryTypes: ["mark", "frame"]});

function perf_observer(list, observer) {
  // Traiter l'événement "measure".
  // ...
  // Désactiver les événements de performance supplémentaires
  observer.disconnect();
}
const observer2 = new PerformanceObserver(perf_observer);
observer2.observe({entryTypes: ["measure"]});
</pre>

<h2 id="Specifications">Spécifications</h2>

<table class="standard-table">
  <thead>
    <tr>
      <th scope="col">Spécification</th>
      <th scope="col">Statut</th>
      <th scope="col">Commentaire</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>{{SpecName('Performance Timeline Level 2',
        '#dom-performanceobserver-disconnect', 'disconnect()')}}</td>
      <td>{{Spec2('Performance Timeline Level 2')}}</td>
      <td>Définition initiale de la méthode <code>disconnect()</code>.</td>
    </tr>
  </tbody>
</table>

<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>

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