Interface ICompilerRequestor
- All Known Implementing Classes:
AbstractImageBuilder, AjBatchImageBuilder, AjIncrementalImageBuilder, BatchCompilerRequestor, BatchImageBuilder, EclipseBatchRequestor, EclipseCompilerRequestor, IncrementalImageBuilder
public interface ICompilerRequestor
A callback interface for receiving compilation results.
-
Method Summary
Modifier and TypeMethodDescriptionvoidacceptResult(CompilationResult result) Accept a compilation result.default voidendBatch()ifstartBatch()was called then endBatch is called to finalize possibly multipleacceptResult(CompilationResult)default voidOptionally called after someacceptResult(CompilationResult)to signal a good point in timedefault voidOptionally called to start multipleacceptResult(CompilationResult)
-
Method Details
-
acceptResult
Accept a compilation result. -
startBatch
default void startBatch()Optionally called to start multipleacceptResult(CompilationResult) -
flushBatch
default void flushBatch()Optionally called after someacceptResult(CompilationResult)to signal a good point in time -
endBatch
default void endBatch()ifstartBatch()was called then endBatch is called to finalize possibly multipleacceptResult(CompilationResult)
-