Package com.google.cloud.firestore
Class ExecutionStats
java.lang.Object
com.google.cloud.firestore.ExecutionStats
A ExecutionStats contains information about the execution of a query.
-
Method Summary
Modifier and TypeMethodDescriptionReturns a map that contains additional statistics related to query execution.Returns the total execution time of the query.longReturns the number of read operations that occurred when executing the query.longReturns the number of query results.
-
Method Details
-
getResultsReturned
public long getResultsReturned()Returns the number of query results. -
getExecutionDuration
Returns the total execution time of the query. -
getReadOperations
public long getReadOperations()Returns the number of read operations that occurred when executing the query. -
getDebugStats
Returns a map that contains additional statistics related to query execution. Note: The content of this map are subject to change.
-