Package com.dsi.ant.plugins.antplus.pcc
Interface AntPlusWeightScalePcc.IAdvancedMeasurementFinishedReceiver
- Enclosing class:
- AntPlusWeightScalePcc
public static interface AntPlusWeightScalePcc.IAdvancedMeasurementFinishedReceiver
Receiver for the AdvancedMeasurementFinished event, which is:
Receives the result of an advanced measurement request.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonAdvancedMeasurementFinished(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusWeightScalePcc.WeightScaleRequestStatus status, AntPlusWeightScalePcc.AdvancedMeasurement measurement) Receives the data from a AdvancedMeasurementFinished event.
-
Method Details
-
onAdvancedMeasurementFinished
void onAdvancedMeasurementFinished(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusWeightScalePcc.WeightScaleRequestStatus status, AntPlusWeightScalePcc.AdvancedMeasurement measurement) Receives the data from a AdvancedMeasurementFinished event.- Parameters:
estTimestamp- The estimated timestamp of when this event was triggered. Useful for correlating multiple events and determining when data was sent for more accurate data records.eventFlags- Informational flags about the event.status- TheAntPlusWeightScalePcc.WeightScaleRequestStatusdefining the result of the measurement task.measurement- TheAntPlusWeightScalePcc.AdvancedMeasurementincluding the measurement data from the scale, null if request was unsuccessful.
-