The underlying IDBTransaction object
The associated ReactiveIDBDatabase of this transaction
If the transaction was aborted, returns the error (a DOMException) providing the reason.
Returns the mode the transaction was created with ("readonly" or "readwrite"), or "versionchange" for an upgrade transaction.
Returns a list of the names of object stores in the transaction's scope. For an upgrade transaction this is all object stores in the database.
Aborts the transaction. All pending requests will fail with a "AbortError" DOMException and all changes made to the database will be reverted.
Returns a ReactiveIDBObjectStore in the transaction's scope.
Returns a ReactiveIDBObjectStore in the transaction's scope.
Generated using TypeDoc
Constructs a ReactiveIDBTransaction