Callback interface
The callback interface of the multipage image capture scenario. This callback is intended to deliver the final capture result.
In case the images were captured successfully, the result images are returned as a Result object. Otherwise the callback will return the occurred error information in addition to the Result object. This interface and its methods are to be implemented on the client side.
interface Callback
Methods
Important! All methods should be called from the Android Main Thread.
Name | Description |
---|---|
onFinished | Called to deliver the result if the images were captured successfully and user pressed "Done" button. |
onClose | Called to deliver current result if the capture process was interrupted by user. |
onError | Called to report an error. |
02.03.2022 12:59:15