Barcode Count Capture List Listener

Defined in package com.scandit.datacapture.barcode.count.capture.list

BarcodeCountCaptureListListener
interface BarcodeCountCaptureListListener

Added in version 6.15.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.

onCaptureListSessionUpdated(list, session)
fun onCaptureListSessionUpdated(list: BarcodeCountCaptureList,
        session: BarcodeCountCaptureListSession)

Added in version 6.15.0

Called after a frame processed by BarcodeCountCaptureList has caused the list to be updated.

onCaptureListCompleted(list, session)
fun onCaptureListCompleted(list: BarcodeCountCaptureList,
        session: BarcodeCountCaptureListSession)

Added in version 6.17.0

Called after when all the barcodes in the BarcodeCountCaptureList have been scanned.

onObservationStarted(list)
fun onObservationStarted(list: BarcodeCountCaptureList)

Added in version 6.15.0

Called when the listener starts observing the BarcodeCountCaptureList instance.

onObservationStopped(list)
fun onObservationStopped(list: BarcodeCountCaptureList)

Added in version 6.15.0

Called when the listener stops observing the BarcodeCountCaptureList instance.

Barcode Count Capture List Extended Listener