aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/performance/setresourcetimingbuffersize/index.html
blob: 3c8a46ce8a32ab681e78f5dd887e9eccff2b5a36 (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
67
68
69
70
71
72
73
74
75
76
---
title: performance.setResourceTimingBufferSize()
slug: Web/API/Performance/setResourceTimingBufferSize
tags:
  - API
  - Web パフォーマンス
  - メソッド
  - リファレンス
translation_of: Web/API/Performance/setResourceTimingBufferSize
---
<div>{{APIRef("Resource Timing API")}}</div>

<p><strong><code>setResourceTimingBufferSize()</code></strong> メソッドは、ブラウザのリソースタイミングバッファサイズを、指定された数の "<code>resource</code>" {{domxref("PerformanceEntry.entryType","performance entry type")}} オブジェクトに設定します。</p>

<p>ブラウザの推奨リソースタイミングバッファサイズは少なくとも 150 {{domxref("PerformanceEntry","performance entry")}} オブジェクトです。</p>

<p>{{AvailableInWorkers}}</p>

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

<pre class="syntaxbox"><em>performance</em>.setResourceTimingBufferSize(maxSize);
</pre>

<h3 id="引数">引数</h3>

<dl>
 <dt>maxSize</dt>
 <dd>ブラウザがパフォーマンスエントリバッファに保持する必要がある {{domxref("PerformanceEntry","performance entry")}} オブジェクトの最大数を表す <code>number</code></dd>
</dl>

<h3 id="Return_Value" name="Return_Value">戻り値</h3>

<dl>
 <dt>なし</dt>
 <dd>このメソッドには戻り値はありません。</dd>
</dl>

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

<pre class="brush: js">function setResourceTimingBufferSize(maxSize) {
  if (performance === undefined) {
    log("Browser does not support Web Performance");
    return;
  }
  var supported = typeof performance.setResourceTimingBufferSize == "function";
  if (supported) {
    log("... Performance.setResourceTimingBufferSize() = Yes");
    performance.setResourceTimingBufferSize(maxSize);
  } else {
    log("... Performance.setResourceTimingBufferSize() = NOT supported");
  }
}
</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('Resource Timing', '#dom-performance-setresourcetimingbuffersize', 'setResourceTimingBufferSize()')}}</td>
   <td>{{Spec2('Resource Timing')}}</td>
   <td>初期定義</td>
  </tr>
 </tbody>
</table>

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

<div>
<p>{{Compat("api.Performance.setResourceTimingBufferSize")}}</p>
</div>