Package com.dsi.ant.plugins.antplus.pcc
Interface AntPlusBloodPressurePcc.IDownloadMeasurementsStatusReceiver
- Enclosing class:
- AntPlusBloodPressurePcc
public static interface AntPlusBloodPressurePcc.IDownloadMeasurementsStatusReceiver
Receiver for the DownloadMeasurementsStatus event, which is:
Receives the status of a
AntPlusBloodPressurePcc.requestDownloadMeasurements(boolean, boolean, IDownloadMeasurementsStatusReceiver, IMeasurementDownloadedReceiver, IAntFsProgressUpdateReceiver)
request.-
Method Summary
Modifier and TypeMethodDescriptionvoid
onDownloadMeasurementsStatus
(AntPlusBloodPressurePcc.DownloadMeasurementsStatusCode statusCode, AntFsRequestStatus finishedCode) Receives the data from a DownloadMeasurementsStatus event.
-
Method Details
-
onDownloadMeasurementsStatus
void onDownloadMeasurementsStatus(AntPlusBloodPressurePcc.DownloadMeasurementsStatusCode statusCode, AntFsRequestStatus finishedCode) Receives the data from a DownloadMeasurementsStatus event.- Parameters:
statusCode
- TheAntPlusBloodPressurePcc.DownloadMeasurementsStatusCode
indicating the status of the request.finishedCode
- If statusCode == FINISHED this isAntFsRequestStatus
indicating the final result of the request.
-