Interface BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionData,BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionData.Builder
- Enclosing class:
- BuildEventStreamProtos.BuildMetrics.ActionSummary
public static interface BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetActionsExecuted()The total number of actions of this type executed during the build.longgetFirstStartedMs()When the first action of this type started being executed, in milliseconds from the epoch.longgetLastEndedMs()When the last action of this type ended being executed, in milliseconds from the epoch.java.lang.StringgetMnemonic()string mnemonic = 1;com.google.protobuf.ByteStringgetMnemonicBytes()string mnemonic = 1;-
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.
-
-