Package com.dsi.ant.plugins.antplus.pcc
Interface AntPlusStrideSdmPcc.IDataLatencyReceiver
- Enclosing class:
- AntPlusStrideSdmPcc
public static interface AntPlusStrideSdmPcc.IDataLatencyReceiver
Receiver for the DataLatency event, which is:
The sensor reported latency between calculation and sensor transmission.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onNewDataLatency
(long estTimestamp, EnumSet<EventFlag> eventFlags, BigDecimal updateLatency) Receives the data from a DataLatency event.
-
Method Details
-
onNewDataLatency
Receives the data from a DataLatency 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.updateLatency
- Sensor reported time elapsed between the last speed or distance computation and the message transmission (up to 1/32s accuracy). Note: This latency time is a sensor reported value and does not include the time between the message being transmitted by the sensor to the plugin receiver and then to the plugin triggering this event. Units: s.
-