Interface UsageStatsOrBuilder

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

@Generated public interface UsageStatsOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    The number of times that the underlying entry was attempted to be used but was cancelled by the user.
    float
    The number of times that the underlying entry was successfully used.
    float
    Total time spent (in milliseconds) during uses the resulted in completions.
    float
    The number of times that the underlying entry was attempted to be used but failed.

    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

    • getTotalCompletions

      float getTotalCompletions()
       The number of times that the underlying entry was successfully used.
       
      float total_completions = 1;
      Returns:
      The totalCompletions.
    • getTotalFailures

      float getTotalFailures()
       The number of times that the underlying entry was attempted to be used
       but failed.
       
      float total_failures = 2;
      Returns:
      The totalFailures.
    • getTotalCancellations

      float getTotalCancellations()
       The number of times that the underlying entry was attempted to be used
       but was cancelled by the user.
       
      float total_cancellations = 3;
      Returns:
      The totalCancellations.
    • getTotalExecutionTimeForCompletionsMillis

      float getTotalExecutionTimeForCompletionsMillis()
       Total time spent (in milliseconds) during uses the resulted in completions.
       
      float total_execution_time_for_completions_millis = 4;
      Returns:
      The totalExecutionTimeForCompletionsMillis.