Interface AntPlusCommonPcc.IProductInformationReceiver
- Enclosing class:
- AntPlusCommonPcc
public static interface AntPlusCommonPcc.IProductInformationReceiver
Receiver for the ProductInformation event, which is:
Information about the product and software.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onNewProductInformation
(long estTimestamp, EnumSet<EventFlag> eventFlags, int mainSoftwareRevision, int supplementalSoftwareRevision, long serialNumber) Receives the data from a ProductInformation event.
-
Method Details
-
onNewProductInformation
void onNewProductInformation(long estTimestamp, EnumSet<EventFlag> eventFlags, int mainSoftwareRevision, int supplementalSoftwareRevision, long serialNumber) Receives the data from a ProductInformation 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 time records.eventFlags
- Informational flags about the event.mainSoftwareRevision
- Manufacturer defined main software revision.supplementalSoftwareRevision
- Manufacturer defined supplemental software revision. 0xFF = Invalid. -2 = Not supported by installed ANT+ Plugins Service version. @since 3.1.0; requires Plugin Service 3.1.0+serialNumber
- Serial number of the device.
-