ScannerConfig.NGSimulScanParams
class in your new applications.
The MultiBarcodeParams class provides access to multi-barcode
parameters that are available to configure.
When doing multi-barcode scanning consider the followings:
@Deprecated
public class ScannerConfig.MultiBarcodeParams
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
barcodeCount
Deprecated.
We recommend using the new fields introduced in the
ScannerConfig.NGSimulScanParams class in your new applications.
Number of barcodes to decode. Count should be 2 to 100.
|
boolean |
instantReporting
Deprecated.
We recommend using the new fields introduced in the
ScannerConfig.NGSimulScanParams class in your new applications.
Enables/Disables instantaneous reporting of unique barcodes within a scanning session (duplicates are ignored).
Enabling this parameter will ignore the value of multiBarcodeParams.barcodeCount param and will report the scanned data to the user instantaneously, without waiting to end the scanning session.
|
boolean |
reportDecodedBarcodes
Deprecated.
We recommend using the new fields introduced in the
ScannerConfig.NGSimulScanParams class in your new applications.
Enables/Disables reporting decoded barcode data in a single scan session irrespective of the configured barcode count.
Enabling this parameter will ignore the AimType CONTINUOUS_READ.
When both multiBarcodeParams.instantReporting and multiBarcodeParams.reportDecodedBarcodes parameters are enabled, Instant Reporting will take effect.
|
@Deprecated public int barcodeCount
ScannerConfig.NGSimulScanParams
class in your new applications.
Number of barcodes to decode. Count should be 2 to 100.
Example Usage: multiBarcodeParams.barcodeCount = 5;
@Deprecated public boolean instantReporting
ScannerConfig.NGSimulScanParams
class in your new applications.
Enables/Disables instantaneous reporting of unique barcodes within a scanning session (duplicates are ignored).
Enabling this parameter will ignore the value of multiBarcodeParams.barcodeCount param and will report the scanned data to the user instantaneously, without waiting to end the scanning session.
Example Usage: multiBarcodeParams.instantReporting = true;
@Deprecated public boolean reportDecodedBarcodes
ScannerConfig.NGSimulScanParams
class in your new applications.
Enables/Disables reporting decoded barcode data in a single scan session irrespective of the configured barcode count.
Enabling this parameter will ignore the AimType CONTINUOUS_READ.
When both multiBarcodeParams.instantReporting and multiBarcodeParams.reportDecodedBarcodes parameters are enabled, Instant Reporting will take effect.
Example Usage: multiBarcodeParams.reportDecodedBarcodes = true;