Back to Firebase Js Sdk

TransactionOptions interface

docs-devsite/database.transactionoptions.md

12.12.11.3 KB
Original Source

Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference

{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}

TransactionOptions interface

An options object to configure transactions.

<b>Signature:</b>

typescript
export declare interface TransactionOptions 

Properties

PropertyTypeDescription
applyLocallybooleanBy default, events are raised each time the transaction update function runs. So if it is run multiple times, you may see intermediate states. You can set this to false to suppress these intermediate states and instead wait until the transaction has completed before events are raised.

TransactionOptions.applyLocally

By default, events are raised each time the transaction update function runs. So if it is run multiple times, you may see intermediate states. You can set this to false to suppress these intermediate states and instead wait until the transaction has completed before events are raised.

<b>Signature:</b>

typescript
readonly applyLocally?: boolean;