Package org.sonar.api.ce.posttask
Interface PostProjectAnalysisTask
-
@ExtensionPoint @ComputeEngineSide public interface PostProjectAnalysisTask
Extension point of which any plugin can provide an implementation and will allow them to be notified whenever some analysis report processing ends in the Compute Engine.If more then one implementation of
PostProjectAnalysisTaskis found, they will be executed in no specific order.Class
PostProjectAnalysisTaskTesteris provided to write unit tests of implementations of this interface.- Since:
- 5.5
- See Also:
PostProjectAnalysisTaskTester
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfacePostProjectAnalysisTask.ProjectAnalysis
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfinished(PostProjectAnalysisTask.ProjectAnalysis analysis)This method is called whenever the processing of a Project analysis has finished, whether successfully or not.
-
-
-
Method Detail
-
finished
void finished(PostProjectAnalysisTask.ProjectAnalysis analysis)
This method is called whenever the processing of a Project analysis has finished, whether successfully or not.
-
-