Interface ConsistencyCheckListener
-
public interface ConsistencyCheckListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiderror(String id, String message)Called on errors with the check procedurevoidinfo(String id, String message)Called on progress with the check procedurevoidreport(ReportItem item)Called when there's a consistency problem to be reportedvoidstartCheck(String id)Called when checking of a node starts
-
-
-
Method Detail
-
startCheck
void startCheck(String id)
Called when checking of a node starts- Parameters:
id- node ID
-
report
void report(ReportItem item)
Called when there's a consistency problem to be reported- Parameters:
item- problem report
-
error
void error(String id, String message)
Called on errors with the check procedure- Parameters:
id- node id (can benull)message-
-
-