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 cancelled attempts to use the underlying entry.
    float
    The number of successful uses of the underlying entry.
    float
    Total time spent only on successful uses, in milliseconds.
    float
    The number of failed attempts to use the underlying entry.

    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 successful uses of the underlying entry.
       
      float total_completions = 1;
      Returns:
      The totalCompletions.
    • getTotalFailures

      float getTotalFailures()
       The number of failed attempts to use the underlying entry.
       
      float total_failures = 2;
      Returns:
      The totalFailures.
    • getTotalCancellations

      float getTotalCancellations()
       The number of cancelled attempts to use the underlying entry.
       
      float total_cancellations = 3;
      Returns:
      The totalCancellations.
    • getTotalExecutionTimeForCompletionsMillis

      float getTotalExecutionTimeForCompletionsMillis()
       Total time spent only on successful uses, in milliseconds.
       
      float total_execution_time_for_completions_millis = 4;
      Returns:
      The totalExecutionTimeForCompletionsMillis.