Options
All
  • Public
  • Public/Protected
  • All
Menu

Class GeoWriteBatch

A write batch, used to perform multiple writes as a single atomic unit.

A GeoWriteBatch object can be acquired by calling GeoFirestore.batch(). It provides methods for adding writes to the write batch. None of the writes will be committed (or visible locally) until GeoWriteBatch.commit() is called.

Unlike transactions, write batches are persisted offline and therefore are preferable when you don't need to condition your writes on read data.

Hierarchy

  • GeoWriteBatch

Index

Constructors

Accessors

Methods

Constructors

  • new GeoWriteBatch(_writeBatch: WriteBatch | WriteBatch, _customKey?: string): GeoWriteBatch
  • Parameters

    • _writeBatch: WriteBatch | WriteBatch

      The WriteBatch instance.

    • Optional _customKey: string

      Key to use for GeoPoints in a write batch.

    Returns GeoWriteBatch

Accessors

  • get native(): WriteBatch | WriteBatch

Methods

  • commit(): Promise<any>
  • Commits all of the writes in this write batch as a single atomic unit.

    Returns Promise<any>

    A Promise resolved once all of the writes in the batch have been successfully written to the backend as an atomic unit. Note that it won't resolve while you're offline.

  • Updates fields in the document referred to by the provided DocumentReference or GeoDocumentReference. The update will fail if applied to a document that does not exist.

    Parameters

    Returns GeoWriteBatch

    This GeoWriteBatch instance. Used for chaining method calls.

Generated using TypeDoc