Class BuildLogCompileErrorCollector
- java.lang.Object
-
- jetbrains.buildServer.serverSide.problems.BuildLogCompileErrorCollector
-
public final class BuildLogCompileErrorCollector extends Object
Collects all error messages (not blocks) belonging to the specified compile block. Error messages from nested compile blocks are skipped.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
collectCompileErrors(Integer compileBlockIndex, SBuild build, ItemProcessor<LogMessage> compileErrorsProcessor)
static void
collectCompileErrors(BlockLogMessage compileBlock, SBuild build, ItemProcessor<LogMessage> compileErrorsProcessor)
-
-
-
Method Detail
-
collectCompileErrors
public static void collectCompileErrors(@NotNull BlockLogMessage compileBlock, @NotNull SBuild build, @NotNull ItemProcessor<LogMessage> compileErrorsProcessor)
-
collectCompileErrors
public static void collectCompileErrors(@NotNull Integer compileBlockIndex, @NotNull SBuild build, @NotNull ItemProcessor<LogMessage> compileErrorsProcessor)
- Parameters:
compileErrorsProcessor
- compilation errors processor, once it returns false, the process of loading compilation errors will stop
-
-