Interface EndOfAnalysis
-
@Beta public interface EndOfAnalysisCommon interface for providing callbacks that are triggered at the end of an analysis, after all files have been scanned. Warning: keeping state between files can lead to memory leaks. Implement with care.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidendOfAnalysis(CacheContext cacheContext)A method called when all files have been processed.
-
-
-
Method Detail
-
endOfAnalysis
void endOfAnalysis(CacheContext cacheContext)
A method called when all files have been processed.- Parameters:
cacheContext- CacheContext that can be used to store or retrieve information in the server cache.
-
-