Interface IProbeListener

All Known Implementing Classes:
Calculator, DemandBasedWaitingTimeCalculator, EventProbeList, HoldingTimeCalculator, IdentityCalculator, ResponseTimeCalculator, SupplementaryMeasurementAttachingProbe, TimeSpanCalculator, UnaryCalculator, WaitingTimeCalculator

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 Type
    Method
    Description
    void
    Call-back method for observers who want to be informed about new probe measurements.
  • Method Details

    • newProbeMeasurementAvailable

      void newProbeMeasurementAvailable(ProbeMeasurement probeMeasurement)
      Call-back method for observers who want to be informed about new probe measurements.
      Parameters:
      probeMeasurement - The newly available probe measurements.