Package org.uberfire.ext.metadata.engine
Interface BatchIndexListener
-
public interface BatchIndexListenerListener that will be notified when the indexing of a project starts or finishes
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnotifyIndexIngFinished(KCluster kCluster, org.uberfire.java.nio.file.Path path)Method that will be called to notify that the indexing has finished.voidnotifyIndexIngStarted(KCluster kCluster, org.uberfire.java.nio.file.Path path)Method that will be called to notify that the indexing has started.
-
-
-
Method Detail
-
notifyIndexIngStarted
void notifyIndexIngStarted(KCluster kCluster, org.uberfire.java.nio.file.Path path)
Method that will be called to notify that the indexing has started.- Parameters:
kCluster- the KCluster that's going to be indexedpath- the path of the project to be indexed
-
notifyIndexIngFinished
void notifyIndexIngFinished(KCluster kCluster, org.uberfire.java.nio.file.Path path)
Method that will be called to notify that the indexing has finished.- Parameters:
kCluster- the KCluster that's been indexedpath- the path of the indexed project
-
-