Interface IProbeListener
- All Known Implementing Classes:
Calculator,EventProbeList,SupplementaryMeasurementAttachingProbe
public interface IProbeListener
Once probes have new measurements at hand, they have to inform registered observers about these
new measurements. To do so, probes provide this dedicated interfaces with call-back methods that
observers have to implement. Probes bind this interface to the generic type parameter
T of AbstractObservable to implement this observer pattern.-
Method Summary
Modifier and TypeMethodDescriptionvoidnewProbeMeasurementAvailable(ProbeMeasurement probeMeasurement) Call-back method for observers who want to be informed about new probe measurements.
-
Method Details
-
newProbeMeasurementAvailable
Call-back method for observers who want to be informed about new probe measurements.- Parameters:
probeMeasurement- The newly available probe measurements.
-