Package xyz.block.ftl.language.v1
Interface BuildFailureOrBuilder
-
- All Implemented Interfaces:
-
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
public interface BuildFailureOrBuilder implements MessageOrBuilder
-
-
Method Summary
Modifier and Type Method Description abstract StringgetContextId()The id of build context used while building.string context_id = 1;abstract ByteStringgetContextIdBytes()The id of build context used while building.string context_id = 1;abstract booleangetIsAutomaticRebuild()Indicates whether the build was automatically started by the plugin, rather than due to a Build rpc call.bool is_automatic_rebuild = 2;abstract booleanhasErrors()Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 3;abstract ErrorListgetErrors()Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 3;abstract ErrorListOrBuildergetErrorsOrBuilder()Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 3;abstract booleangetInvalidateDependencies()Indicates the plugin determined that the dependencies in the BuildContext are out of date. If a Build stream is being kept open for automatic rebuilds, FTL will call GetDependencies, followed by BuildContextUpdated.bool invalidate_dependencies = 4;-
Methods inherited from class com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof -
Methods inherited from class com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getContextId
abstract String getContextId()
The id of build context used while building.string context_id = 1;- Returns:
The contextId.
-
getContextIdBytes
abstract ByteString getContextIdBytes()
The id of build context used while building.string context_id = 1;- Returns:
The bytes for contextId.
-
getIsAutomaticRebuild
abstract boolean getIsAutomaticRebuild()
Indicates whether the build was automatically started by the plugin, rather than due to a Build rpc call.bool is_automatic_rebuild = 2;- Returns:
The isAutomaticRebuild.
-
hasErrors
abstract boolean hasErrors()
Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 3;- Returns:
Whether the errors field is set.
-
getErrors
abstract ErrorList getErrors()
Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 3;- Returns:
The errors.
-
getErrorsOrBuilder
abstract ErrorListOrBuilder getErrorsOrBuilder()
Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 3;
-
getInvalidateDependencies
abstract boolean getInvalidateDependencies()
Indicates the plugin determined that the dependencies in the BuildContext are out of date. If a Build stream is being kept open for automatic rebuilds, FTL will call GetDependencies, followed by BuildContextUpdated.bool invalidate_dependencies = 4;- Returns:
The invalidateDependencies.
-
-
-
-