Package com.google.devtools.build.v1
Interface BuildEvent.InvocationAttemptStartedOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BuildEvent.InvocationAttemptStarted,BuildEvent.InvocationAttemptStarted.Builder
- Enclosing class:
- BuildEvent
public static interface BuildEvent.InvocationAttemptStartedOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetAttemptNumber()The number of the invocation attempt, starting at 1 and increasing by 1 for each new attempt.com.google.protobuf.AnygetDetails()Additional details about the invocation.com.google.protobuf.AnyOrBuildergetDetailsOrBuilder()Additional details about the invocation.booleanhasDetails()Additional details about the invocation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAttemptNumber
long getAttemptNumber()
The number of the invocation attempt, starting at 1 and increasing by 1 for each new attempt. Can be used to determine if there is a later invocation attempt replacing the current one a client is processing.
int64 attempt_number = 1;- Returns:
- The attemptNumber.
-
hasDetails
boolean hasDetails()
Additional details about the invocation.
.google.protobuf.Any details = 2;- Returns:
- Whether the details field is set.
-
getDetails
com.google.protobuf.Any getDetails()
Additional details about the invocation.
.google.protobuf.Any details = 2;- Returns:
- The details.
-
getDetailsOrBuilder
com.google.protobuf.AnyOrBuilder getDetailsOrBuilder()
Additional details about the invocation.
.google.protobuf.Any details = 2;
-
-