aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/idbtransaction/abort_event/index.md
blob: dc91aa0fbdd4659407f60de26b321ddb12c0dfd4 (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
---
title: abort
slug: Web/API/IDBTransaction/abort_event
translation_of: Web/API/IDBTransaction/abort_event
---
Le gestionnaire d'arrêt est exécuté lorsqu'une transaction a été interrompue.

## Informations générales

- Spécification
  - : [IndexedDB](http://www.w3.org/TR/IndexedDB/#request-api)
- Interface
  - : Event
- Propagation
  - : Oui
- Annulable
  - : Non
- Cible
  - : IDBTransaction
- Action par défaut
  - : Aucune

## Propriétés

| Property                              | Type                                 | Description                                            |
| ------------------------------------- | ------------------------------------ | ------------------------------------------------------ |
| `target` {{readonlyInline}}     | {{domxref("EventTarget")}} | The event target (the topmost target in the DOM tree). |
| `type` {{readonlyInline}}       | {{domxref("DOMString")}}     | The type of event.                                     |
| `bubbles` {{readonlyInline}}    | {{jsxref("Boolean")}}         | Whether the event normally bubbles or not.             |
| `cancelable` {{readonlyInline}} | {{jsxref("Boolean")}}         | Whether the event is cancellable or not.               |

## Evénements liés

- {{event("success")}}
- {{event("error")}}
- {{event("abort")}}
- {{event("complete")}}
- {{event("upgradeneeded")}}
- {{event("blocked")}}
- {{event("versionchange")}}

## Voir aussi

- [Utilisation d'IndexedDB](/fr/docs/IndexedDB/Using_IndexedDB)