Package io.scanbot.sdk.barcode.ui
Interface IBarcodeScanCountViewCallback
-
- All Implemented Interfaces:
public interface IBarcodeScanCountViewCallback
Callbacks which be called from the IBarcodeCounterView
-
-
Method Summary
Modifier and Type Method Description Unit
onScanAndCountStarted()
Called each time the view going to run scanning. Unit
onLicenseError()
Unit
onScanAndCountFinished(List<BarcodeItem> barcodes)
Called after the successful barcodes scan. Unit
onCameraOpen()
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.
-
-