Barcode Count Capture List Listener
Defined in library scandit_datacapture_barcode_count
- BarcodeCountCaptureListListener
abstract class BarcodeCountCaptureListListenerAdded in version 6.17.0
The BarcodeCountCaptureList listener is the main way for hooking into BarcodeCountCaptureList. It provides a callback that is invoked when the state of target barcodes changes.
- didUpdateSession(barcodeCountCaptureList, session)
voiddidUpdateSession(BarcodeCountCaptureList barcodeCountCaptureList, BarcodeCountCaptureListSession session)Added in version 6.17.0
Called after a frame processed by BarcodeCountCaptureList has caused the list to be updated.
Barcode Count Capture List Extended Listener
- BarcodeCountCaptureListExtendedListener
abstract class BarcodeCountCaptureListExtendedListener : BarcodeCountCaptureListListener
Added in version 8.3.0
Extended listener interface that adds new methods to BarcodeCountCaptureListListener without breaking existing implementations.
- didCompleteCaptureList(barcodeCountCaptureList, session)
voiddidCompleteCaptureList(BarcodeCountCaptureList barcodeCountCaptureList, BarcodeCountCaptureListSession session)Added in version 8.3.0
Called after when all the barcodes in the BarcodeCountCaptureList have been scanned.
Note
This method is only available in BarcodeCountCaptureListExtendedListener. To use it, implement the extended listener instead of the base listener.