Package com.zebra.rfid.api3
Class ReportTriggers
- java.lang.Object
-
- com.zebra.rfid.api3.ReportTriggers
-
public class ReportTriggers extends java.lang.Object
Class related to REPORT_TRIGGERS struct/class Not Supported in the Android RFID SDK.
-
-
Constructor Summary
Constructors Constructor Description ReportTriggers()
ConstructorReportTriggers(int periodicReportTrigger)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getPeriodicReportTrigger()
Signifies different trigger mechanism to get tag reports 1.PeriodicReportTrigger Possible Values: 0 - Tag reports will be generated at the end of inventory.void
setPeriodicReportTrigger(int periodicReportTrigger)
Signifies different trigger mechanism to get tag reports 1.PeriodicReportTrigger Possible Values: 0 - Tag reports will be generated at the end of inventory.
-
-
-
Method Detail
-
getPeriodicReportTrigger
public int getPeriodicReportTrigger()
Signifies different trigger mechanism to get tag reports 1.PeriodicReportTrigger Possible Values: 0 - Tag reports will be generated at the end of inventory. n - Report tag first time it is read and then after every 'n' seconds (periodically) time interval if the tag is continued to be read. (At a time one will be considered tagReportTrigger or PeriodicReportTrigger) The following restrictions are applicable when using a periodic report trigger on the reader. 1. Access Operation results will not be sent as part of the periodic report trigger and the reader sends an exception event when access operations are added with reader configured for periodic reporting of tags. 2. Stop trigger of type tagObservation 'Upon_Seeing_N_Tags_Or_Timeout' is not supported with the reader configured for periodic reporting of tags.
-
setPeriodicReportTrigger
public void setPeriodicReportTrigger(int periodicReportTrigger)
Signifies different trigger mechanism to get tag reports 1.PeriodicReportTrigger Possible Values: 0 - Tag reports will be generated at the end of inventory. n - Report tag first time it is read and then after every 'n' seconds (periodically) time interval if the tag is continued to be read. (At a time one will be considered tagReportTrigger or PeriodicReportTrigger) The following restrictions are applicable when using a periodic report trigger on the reader. 1. Access Operation results will not be sent as part of the periodic report trigger and the reader sends an exception event when access operations are added with reader configured for periodic reporting of tags. 2. Stop trigger of type tagObservation 'Upon_Seeing_N_Tags_Or_Timeout' is not supported with the reader configured for periodic reporting of tags.
-
-