LoadBundleTaskProgress interface
Stay organized with collections
Save and categorize content based on your preferences.
Represents a progress update or a final state from loading bundles.
Signature:
export declare interface LoadBundleTaskProgress
Properties
LoadBundleTaskProgress.bytesLoaded
How many bytes have been loaded.
Signature:
bytesLoaded: number;
LoadBundleTaskProgress.documentsLoaded
How many documents have been loaded.
Signature:
documentsLoaded: number;
LoadBundleTaskProgress.taskState
Current task state.
Signature:
taskState: TaskState;
LoadBundleTaskProgress.totalBytes
How many bytes are in the bundle being loaded.
Signature:
totalBytes: number;
LoadBundleTaskProgress.totalDocuments
How many documents are in the bundle being loaded.
Signature:
totalDocuments: number;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2022-07-22 UTC.
[null,null,["Last updated 2022-07-22 UTC."],[],[],null,["# LoadBundleTaskProgress interface\n\nRepresents a progress update or a final state from loading bundles.\n\n**Signature:** \n\n export declare interface LoadBundleTaskProgress \n\nProperties\n----------\n\n| Property | Type | Description |\n|-------------------------------------------------------------------------------------------------|----------------------------------------|----------------------------------------------------|\n| [bytesLoaded](./firestore_.loadbundletaskprogress.md#loadbundletaskprogressbytesloaded) | number | How many bytes have been loaded. |\n| [documentsLoaded](./firestore_.loadbundletaskprogress.md#loadbundletaskprogressdocumentsloaded) | number | How many documents have been loaded. |\n| [taskState](./firestore_.loadbundletaskprogress.md#loadbundletaskprogresstaskstate) | [TaskState](./firestore_.md#taskstate) | Current task state. |\n| [totalBytes](./firestore_.loadbundletaskprogress.md#loadbundletaskprogresstotalbytes) | number | How many bytes are in the bundle being loaded. |\n| [totalDocuments](./firestore_.loadbundletaskprogress.md#loadbundletaskprogresstotaldocuments) | number | How many documents are in the bundle being loaded. |\n\nLoadBundleTaskProgress.bytesLoaded\n----------------------------------\n\nHow many bytes have been loaded.\n\n**Signature:** \n\n bytesLoaded: number;\n\nLoadBundleTaskProgress.documentsLoaded\n--------------------------------------\n\nHow many documents have been loaded.\n\n**Signature:** \n\n documentsLoaded: number;\n\nLoadBundleTaskProgress.taskState\n--------------------------------\n\nCurrent task state.\n\n**Signature:** \n\n taskState: TaskState;\n\nLoadBundleTaskProgress.totalBytes\n---------------------------------\n\nHow many bytes are in the bundle being loaded.\n\n**Signature:** \n\n totalBytes: number;\n\nLoadBundleTaskProgress.totalDocuments\n-------------------------------------\n\nHow many documents are in the bundle being loaded.\n\n**Signature:** \n\n totalDocuments: number;"]]