Interface BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionDataOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getActionsExecuted()
      The total number of actions of this type executed during the build.
      long getFirstStartedMs()
      When the first action of this type started being executed, in milliseconds from the epoch.
      long getLastEndedMs()
      When the last action of this type ended being executed, in milliseconds from the epoch.
      java.lang.String getMnemonic()
      string mnemonic = 1;
      com.google.protobuf.ByteString getMnemonicBytes()
      string mnemonic = 1;
      • 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

      • getMnemonic

        java.lang.String getMnemonic()
        string mnemonic = 1;
        Returns:
        The mnemonic.
      • getMnemonicBytes

        com.google.protobuf.ByteString getMnemonicBytes()
        string mnemonic = 1;
        Returns:
        The bytes for mnemonic.
      • getActionsExecuted

        long getActionsExecuted()
         The total number of actions of this type executed during the build. As
         above, includes remote cache hits but excludes local action cache hits.
         
        int64 actions_executed = 2;
        Returns:
        The actionsExecuted.
      • getFirstStartedMs

        long getFirstStartedMs()
         When the first action of this type started being executed, in
         milliseconds from the epoch.
         
        int64 first_started_ms = 3;
        Returns:
        The firstStartedMs.
      • getLastEndedMs

        long getLastEndedMs()
         When the last action of this type ended being executed, in
         milliseconds from the epoch.
         
        int64 last_ended_ms = 4;
        Returns:
        The lastEndedMs.