Interface MeasurementNotificationService

interface MeasurementNotificationService {
    onFrontendMeasurement(frontendId, result): void;
}

Implemented by

Methods

  • Notify the backend when a fronted stopwatch provides a new measurement.

    Parameters

    • frontendId: string

      The unique id associated with the frontend that sends the notification

    • result: MeasurementResult

      The new measurement result

    Returns void