Interface UsageStatsOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      float getTotalCancellations()
      The number of times that the underlying entry was attempted to be used but was cancelled by the user.
      float getTotalCompletions()
      The number of times that the underlying entry was successfully used.
      float getTotalExecutionTimeForCompletionsMillis()
      Total time spent (in milliseconds) during uses the resulted in completions.
      float getTotalFailures()
      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 Detail

      • 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.