cover

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.  

This feature is available on the WASM platform and can be enabled within applications that employ the WEBSDK.

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);
            
If you don't plan to use the app on older devices, you can safely set the decoding speed to SLOW. This will yield more reliable results. On modern phones, the slight decrease in speed is negligible compared to the improved reliability.  

Page Contents

History:

close