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 booleanhasErrors()Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 1;abstract ErrorListgetErrors()Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 1;abstract ErrorListOrBuildergetErrorsOrBuilder()Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 1;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 = 2;abstract List<String>getModifiedFilesList()Files modified during the build, relative to the build dirrepeated string modified_files = 9;abstract intgetModifiedFilesCount()Files modified during the build, relative to the build dirrepeated string modified_files = 9;abstract StringgetModifiedFiles(int index)Files modified during the build, relative to the build dirrepeated string modified_files = 9;abstract ByteStringgetModifiedFilesBytes(int index)Files modified during the build, relative to the build dirrepeated string modified_files = 9;-
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
-
hasErrors
abstract boolean hasErrors()
Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 1;- 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 = 1;- Returns:
The errors.
-
getErrorsOrBuilder
abstract ErrorListOrBuilder getErrorsOrBuilder()
Errors contains any errors that occurred during the build.xyz.block.ftl.language.v1.ErrorList errors = 1;
-
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 = 2;- Returns:
The invalidateDependencies.
-
getModifiedFilesList
abstract List<String> getModifiedFilesList()
Files modified during the build, relative to the build dirrepeated string modified_files = 9;- Returns:
A list containing the modifiedFiles.
-
getModifiedFilesCount
abstract int getModifiedFilesCount()
Files modified during the build, relative to the build dirrepeated string modified_files = 9;- Returns:
The count of modifiedFiles.
-
getModifiedFiles
abstract String getModifiedFiles(int index)
Files modified during the build, relative to the build dirrepeated string modified_files = 9;- Parameters:
index- The index of the element to return.- Returns:
The modifiedFiles at the given index.
-
getModifiedFilesBytes
abstract ByteString getModifiedFilesBytes(int index)
Files modified during the build, relative to the build dirrepeated string modified_files = 9;- Parameters:
index- The index of the value to return.- Returns:
The bytes of the modifiedFiles at the given index.
-
-
-
-