Interface ConsistencyCheckListener
-
public interface ConsistencyCheckListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
error(String id, String message)
Called on errors with the check procedurevoid
info(String id, String message)
Called on progress with the check procedurevoid
report(ReportItem item)
Called when there's a consistency problem to be reportedvoid
startCheck(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
-
-
-