Interface ResultSetStatsOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
ResultSetStats, ResultSetStats.Builder

public interface ResultSetStatsOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Plan for the query.
    Plan for the query.
    com.google.protobuf.Struct
    Aggregated statistics from the execution of the query.
    com.google.protobuf.StructOrBuilder
    Aggregated statistics from the execution of the query.
    boolean
    Plan for the query.
    boolean
    Aggregated statistics from the execution of the query.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • hasQueryPlan

      boolean hasQueryPlan()
       Plan for the query.
       
      .google.datastore.v1.QueryPlan query_plan = 1;
      Returns:
      Whether the queryPlan field is set.
    • getQueryPlan

      QueryPlan getQueryPlan()
       Plan for the query.
       
      .google.datastore.v1.QueryPlan query_plan = 1;
      Returns:
      The queryPlan.
    • getQueryPlanOrBuilder

      QueryPlanOrBuilder getQueryPlanOrBuilder()
       Plan for the query.
       
      .google.datastore.v1.QueryPlan query_plan = 1;
    • hasQueryStats

      boolean hasQueryStats()
       Aggregated statistics from the execution of the query.
      
       This will only be present when the request specifies `PROFILE` mode.
       For example, a query will return the statistics including:
      
       {
         "results_returned": "20",
         "documents_scanned": "20",
         "indexes_entries_scanned": "10050",
         "total_execution_time": "100.7 msecs"
       }
       
      .google.protobuf.Struct query_stats = 2;
      Returns:
      Whether the queryStats field is set.
    • getQueryStats

      com.google.protobuf.Struct getQueryStats()
       Aggregated statistics from the execution of the query.
      
       This will only be present when the request specifies `PROFILE` mode.
       For example, a query will return the statistics including:
      
       {
         "results_returned": "20",
         "documents_scanned": "20",
         "indexes_entries_scanned": "10050",
         "total_execution_time": "100.7 msecs"
       }
       
      .google.protobuf.Struct query_stats = 2;
      Returns:
      The queryStats.
    • getQueryStatsOrBuilder

      com.google.protobuf.StructOrBuilder getQueryStatsOrBuilder()
       Aggregated statistics from the execution of the query.
      
       This will only be present when the request specifies `PROFILE` mode.
       For example, a query will return the statistics including:
      
       {
         "results_returned": "20",
         "documents_scanned": "20",
         "indexes_entries_scanned": "10050",
         "total_execution_time": "100.7 msecs"
       }
       
      .google.protobuf.Struct query_stats = 2;