aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/performance/resourcetimingbufferfull_event/index.md
blob: 56151c0e8f2d3f091538a29b05898d5b56c97be3 (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
---
title: 'Performance: resourcetimingbufferfull イベント'
slug: Web/API/Performance/resourcetimingbufferfull_event
tags:
  - API
  - DOM
  - イベント
  - パフォーマンス
  - リファレンス
  - ウェブパフォーマンス
  - onresourcetimingbufferfull
browser-compat: api.Performance.resourcetimingbufferfull_event
translation_of: Web/API/Performance/resourcetimingbufferfull_event
---
{{APIRef}}

`resourcetimingbufferfull` イベントは、ブラウザーのリソースタイミングバッファーがいっぱいになると発生します。

<table class="properties">
  <tbody>
    <tr>
      <th scope="row">バブリング</th>
      <td>はい</td>
    </tr>
    <tr>
      <th scope="row">キャンセル</th>
      <td>可</td>
    </tr>
    <tr>
      <th scope="row">インターフェイス</th>
      <td>{{domxref("Event")}}</td>
    </tr>
    <tr>
      <th scope="row">イベントハンドラープロパティ</th>
      <td>
        {{domxref("Performance.onresourcetimingbufferfull", "onresourcetimingbufferfull")}}
      </td>
    </tr>
  </tbody>
</table>

## 例

次の例では、`onresourcetimingbufferfull` プロパティにコールバック関数を設定します。

```js
function buffer_full(event) {
  console.log("WARNING: Resource Timing Buffer is FULL!");
  performance.setResourceTimingBufferSize(200);
}
function init() {
  // リソースバッファーが一杯になったときのコールバックを設定
  performance.onresourcetimingbufferfull = buffer_full;
}
<body onload="init()">
```

addEventListener() 関数を使用してハンドラーを設定することもできます。

```js
performance.addEventListener('resourcetimingbufferfull', buffer_full);
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- {{domxref("Performance.clearResourceTimings","Performance.clearResourceTimings()")}}
- {{domxref("Performance.setResourceTimingBufferSize","Performance.setResourceTimingBufferSize()")}}