Interface InconsistencyListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
DefaultInconsistencyListener,EvaluationInconsistencyListener
public interface InconsistencyListener extends EventListener
Listener interface for listeners of stream-based inconsistency measures.- Author:
- Matthias Thimm
-
-
Method Summary
Modifier and Type Method Description voidinconsistencyMeasurementStarted(InconsistencyUpdateEvent evt)This method is called by a stream-based inconsistency measure when an inconsistency measurement has started.voidinconsistencyUpdateOccured(InconsistencyUpdateEvent evt)This method is called by a stream-based inconsistency measure when an update of an inconsistency value occurs.
-
-
-
Method Detail
-
inconsistencyUpdateOccured
void inconsistencyUpdateOccured(InconsistencyUpdateEvent evt)
This method is called by a stream-based inconsistency measure when an update of an inconsistency value occurs.- Parameters:
evt- some event.
-
inconsistencyMeasurementStarted
void inconsistencyMeasurementStarted(InconsistencyUpdateEvent evt)
This method is called by a stream-based inconsistency measure when an inconsistency measurement has started.- Parameters:
evt- some event.
-
-