Package io.scanbot.sdk.barcode.ui
Interface IBarcodeScannerViewController
-
- All Implemented Interfaces:
-
io.scanbot.sdk.ui.IAutoSnappingViewController
,io.scanbot.sdk.ui.ICameraViewController
,io.scanbot.sdk.ui.ILegacyCameraController
,io.scanbot.sdk.ui.ILiveDetectionCameraController
public interface IBarcodeScannerViewController implements IAutoSnappingViewController
Allows to control the state and the behavior of the IBarcodeScannerView
-
-
Method Summary
Modifier and Type Method Description abstract Unit
setBarcodeFilter(IBarcodeFilter filter)
Set implementation of IBarcodeFilter, that will filter frames with undesired data. abstract Long
getBarcodeDetectionInterval()
Set barcode detection interval in milliseconds. abstract Unit
setBarcodeDetectionInterval(Long barcodeDetectionInterval)
Set barcode detection interval in milliseconds. -
-
Method Detail
-
setBarcodeFilter
abstract Unit setBarcodeFilter(IBarcodeFilter filter)
Set implementation of IBarcodeFilter, that will filter frames with undesired data.
NOTE: here, for BarcodeScanner (unlike in BatchBarcodeScanner) only IBarcodeFilter.acceptsBarcode filtering method will be used.
- Parameters:
filter
- IBarcodeFilter implementation.
-
getBarcodeDetectionInterval
abstract Long getBarcodeDetectionInterval()
Set barcode detection interval in milliseconds.
-
setBarcodeDetectionInterval
abstract Unit setBarcodeDetectionInterval(Long barcodeDetectionInterval)
Set barcode detection interval in milliseconds.
-
-
-
-