Interface AntPlusGenericRemoteControlPcc.IGenericCommandFinishedReceiver
- Enclosing class:
- AntPlusGenericRemoteControlPcc
public static interface AntPlusGenericRemoteControlPcc.IGenericCommandFinishedReceiver
Receiver for the GenericCommandFinished event, which is:
Receives the result of a sent generic command.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onGenericCommandFinished
(long estTimestamp, EnumSet<EventFlag> eventFlags, RequestStatus status) Receives the data from a GenericCommandFinished event.
-
Method Details
-
onGenericCommandFinished
void onGenericCommandFinished(long estTimestamp, EnumSet<EventFlag> eventFlags, RequestStatus status) Receives the data from a GenericCommandFinished event.- Parameters:
estTimestamp
- The estimated timestamp of when this event was triggered. Useful for correlating multiple events.eventFlags
- Informational flags about the event.status
- TheRequestStatus
defining the result of the command.
-