Enable Batch MultiScan on WASM
What is Batch MultiScan for WASM? #
Batch MultiScan is a feature of the barKoder Barcode Scanner SDK that enables batch scanning of multiple barcodes without interrupting the scanning process. It allows users to decode various types and sizes of barcodes in a single session, greatly enhancing efficiency for bulk scanning tasks.
How to enable it?#
This is done by disabling the automatic closing of the scanning session after a result is obtained. The feature also includes an option to set a caching duration for the codes scanned and the ability to enable multi-code caching. The duplicates delay and maximum results count can also be adjusted. For best results, it is recommended to have the decoding speed and barKoder resolution set to normal.
Barkoder.setContinuous(false);
Barkoder.setMulticodeCachingDuration(3000);
Barkoder.setMulticodeCachingEnabled(Barkoder.constants.MulticodeCachingEnabled.Enable);
Barkoder.setDuplicatesDelayMs(0);
Barkoder.setMaximumResultsCount(20);
Barkoder.setCameraResolution(Barkoder.constants.CameraResolution.HD);
Barkoder.setDecodingSpeed(Barkoder.constants.DecodingSpeed.Normal);