Interface BuildEventStreamProtos.ActionExecutedOrBuilder

    • Method Detail

      • getSuccess

        boolean getSuccess()
        bool success = 1;
        Returns:
        The success.
      • getType

        java.lang.String getType()
         The mnemonic of the action that was executed
         
        string type = 8;
        Returns:
        The type.
      • getTypeBytes

        com.google.protobuf.ByteString getTypeBytes()
         The mnemonic of the action that was executed
         
        string type = 8;
        Returns:
        The bytes for type.
      • getExitCode

        int getExitCode()
         The exit code of the action, if it is available.
         
        int32 exit_code = 2;
        Returns:
        The exitCode.
      • hasStdout

        boolean hasStdout()
         Location where to find the standard output of the action
         (e.g., a file path).
         
        .build_event_stream.File stdout = 3;
        Returns:
        Whether the stdout field is set.
      • getStdout

        BuildEventStreamProtos.File getStdout()
         Location where to find the standard output of the action
         (e.g., a file path).
         
        .build_event_stream.File stdout = 3;
        Returns:
        The stdout.
      • getStdoutOrBuilder

        BuildEventStreamProtos.FileOrBuilder getStdoutOrBuilder()
         Location where to find the standard output of the action
         (e.g., a file path).
         
        .build_event_stream.File stdout = 3;
      • hasStderr

        boolean hasStderr()
         Location where to find the standard error of the action
         (e.g., a file path).
         
        .build_event_stream.File stderr = 4;
        Returns:
        Whether the stderr field is set.
      • getStderr

        BuildEventStreamProtos.File getStderr()
         Location where to find the standard error of the action
         (e.g., a file path).
         
        .build_event_stream.File stderr = 4;
        Returns:
        The stderr.
      • getStderrOrBuilder

        BuildEventStreamProtos.FileOrBuilder getStderrOrBuilder()
         Location where to find the standard error of the action
         (e.g., a file path).
         
        .build_event_stream.File stderr = 4;
      • getLabel

        @Deprecated
        java.lang.String getLabel()
        Deprecated.
        build_event_stream.ActionExecuted.label is deprecated. See src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto;l=516
         Deprecated. This field is now present on ActionCompletedId.
         
        string label = 5 [deprecated = true];
        Returns:
        The label.
      • getLabelBytes

        @Deprecated
        com.google.protobuf.ByteString getLabelBytes()
        Deprecated.
        build_event_stream.ActionExecuted.label is deprecated. See src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto;l=516
         Deprecated. This field is now present on ActionCompletedId.
         
        string label = 5 [deprecated = true];
        Returns:
        The bytes for label.
      • hasConfiguration

        @Deprecated
        boolean hasConfiguration()
        Deprecated.
        build_event_stream.ActionExecuted.configuration is deprecated. See src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto;l=519
         Deprecated. This field is now present on ActionCompletedId.
         
        .build_event_stream.BuildEventId.ConfigurationId configuration = 7 [deprecated = true];
        Returns:
        Whether the configuration field is set.
      • getConfiguration

        @Deprecated
        BuildEventStreamProtos.BuildEventId.ConfigurationId getConfiguration()
        Deprecated.
        build_event_stream.ActionExecuted.configuration is deprecated. See src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto;l=519
         Deprecated. This field is now present on ActionCompletedId.
         
        .build_event_stream.BuildEventId.ConfigurationId configuration = 7 [deprecated = true];
        Returns:
        The configuration.
      • hasPrimaryOutput

        boolean hasPrimaryOutput()
         Primary output; only provided for successful actions.
         
        .build_event_stream.File primary_output = 6;
        Returns:
        Whether the primaryOutput field is set.
      • getPrimaryOutput

        BuildEventStreamProtos.File getPrimaryOutput()
         Primary output; only provided for successful actions.
         
        .build_event_stream.File primary_output = 6;
        Returns:
        The primaryOutput.
      • getPrimaryOutputOrBuilder

        BuildEventStreamProtos.FileOrBuilder getPrimaryOutputOrBuilder()
         Primary output; only provided for successful actions.
         
        .build_event_stream.File primary_output = 6;
      • getCommandLineList

        java.util.List<java.lang.String> getCommandLineList()
         The command-line of the action, if the action is a command.
         
        repeated string command_line = 9;
        Returns:
        A list containing the commandLine.
      • getCommandLineCount

        int getCommandLineCount()
         The command-line of the action, if the action is a command.
         
        repeated string command_line = 9;
        Returns:
        The count of commandLine.
      • getCommandLine

        java.lang.String getCommandLine​(int index)
         The command-line of the action, if the action is a command.
         
        repeated string command_line = 9;
        Parameters:
        index - The index of the element to return.
        Returns:
        The commandLine at the given index.
      • getCommandLineBytes

        com.google.protobuf.ByteString getCommandLineBytes​(int index)
         The command-line of the action, if the action is a command.
         
        repeated string command_line = 9;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the commandLine at the given index.
      • getActionMetadataLogsList

        java.util.List<BuildEventStreamProtos.File> getActionMetadataLogsList()
         List of paths to log files
         
        repeated .build_event_stream.File action_metadata_logs = 10;
      • getActionMetadataLogs

        BuildEventStreamProtos.File getActionMetadataLogs​(int index)
         List of paths to log files
         
        repeated .build_event_stream.File action_metadata_logs = 10;
      • getActionMetadataLogsCount

        int getActionMetadataLogsCount()
         List of paths to log files
         
        repeated .build_event_stream.File action_metadata_logs = 10;
      • getActionMetadataLogsOrBuilderList

        java.util.List<? extends BuildEventStreamProtos.FileOrBuilder> getActionMetadataLogsOrBuilderList()
         List of paths to log files
         
        repeated .build_event_stream.File action_metadata_logs = 10;
      • getActionMetadataLogsOrBuilder

        BuildEventStreamProtos.FileOrBuilder getActionMetadataLogsOrBuilder​(int index)
         List of paths to log files
         
        repeated .build_event_stream.File action_metadata_logs = 10;
      • hasFailureDetail

        boolean hasFailureDetail()
         Only populated if success = false, and sometimes not even then.
         
        .failure_details.FailureDetail failure_detail = 11;
        Returns:
        Whether the failureDetail field is set.
      • getFailureDetail

        FailureDetails.FailureDetail getFailureDetail()
         Only populated if success = false, and sometimes not even then.
         
        .failure_details.FailureDetail failure_detail = 11;
        Returns:
        The failureDetail.
      • getFailureDetailOrBuilder

        FailureDetails.FailureDetailOrBuilder getFailureDetailOrBuilder()
         Only populated if success = false, and sometimes not even then.
         
        .failure_details.FailureDetail failure_detail = 11;