Package com.dsi.ant.plugins.antplus.pcc
Interface AntPlusWeightScalePcc.ICapabilitiesRequestFinishedReceiver
- Enclosing class:
- AntPlusWeightScalePcc
public static interface AntPlusWeightScalePcc.ICapabilitiesRequestFinishedReceiver
Receiver for the CapabilitiesRequestFinished event, which is:
Receives the result of a capabilities request.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onCapabilitiesRequestFinished
(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusWeightScalePcc.WeightScaleRequestStatus status, int userProfileID, boolean historySupport, boolean userProfileExchangeSupport, boolean userProfileSelected) Receives the data from a CapabilitiesRequestFinished event.
-
Method Details
-
onCapabilitiesRequestFinished
void onCapabilitiesRequestFinished(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusWeightScalePcc.WeightScaleRequestStatus status, int userProfileID, boolean historySupport, boolean userProfileExchangeSupport, boolean userProfileSelected) Receives the data from a CapabilitiesRequestFinished 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.WeightScaleRequestStatus
defining the result of the request.userProfileID
- the user identifier of the scale's currently 'selected' user profile, -1 = 'Unassigned'.historySupport
- Indicates if scale supports storage and download of measurement history.userProfileExchangeSupport
- Indicates if scale supports receiving a user profile.userProfileSelected
- Indicates if a user profile has been 'selected' on the scale. The 'selected' profile is used to calculate advanced body measurements in the absence of an application-provided profile.
-