Package io.scanbot.sdk.barcode.ui
Interface IBarcodeScanCountViewCallback
-
- All Implemented Interfaces:
public interface IBarcodeScanCountViewCallbackCallbacks which be called from the IBarcodeCounterView
-
-
Method Summary
Modifier and Type Method Description UnitonScanAndCountStarted()Called each time the view going to run scanning. UnitonLicenseError()UnitonScanAndCountFinished(List<BarcodeItem> barcodes)Called after the successful barcodes scan. UnitonCameraOpen()Called each time camera view is ready for scanning. -
-
Method Detail
-
onScanAndCountStarted
Unit onScanAndCountStarted()
Called each time the view going to run scanning. Can be used to show progress view while waiting till the successful image snap and scanning.
-
onLicenseError
Unit onLicenseError()
-
onScanAndCountFinished
Unit onScanAndCountFinished(List<BarcodeItem> barcodes)
Called after the successful barcodes scan.
-
onCameraOpen
Unit onCameraOpen()
Called each time camera view is ready for scanning.
-
-
-
-