Package com.dsi.ant.plugins.antplus.pcc
Interface AntPlusStrideSdmPcc.IComputationTimestampReceiver
- Enclosing class:
- AntPlusStrideSdmPcc
public static interface AntPlusStrideSdmPcc.IComputationTimestampReceiver
Receiver for the ComputationTimestamp event, which is:
Data about the timing of the last speed and distance computation.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onNewComputationTimestamp
(long estTimestamp, EnumSet<EventFlag> eventFlags, BigDecimal timestampOfLastComputation) Receives the data from a ComputationTimestamp event.
-
Method Details
-
onNewComputationTimestamp
void onNewComputationTimestamp(long estTimestamp, EnumSet<EventFlag> eventFlags, BigDecimal timestampOfLastComputation) Receives the data from a ComputationTimestamp 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.timestampOfLastComputation
- Sensor reported time counter value of last distance or speed computation (up to 1/200s accuracy). Units: s. Rollover: Every ~46 quadrillion s (~1.5 billion years).
-