Interface ProgressCallback
- All Known Subinterfaces:
FaceMatchCallback
,GenericIdExtractionCallback
,IdExtractionCallback
,PassportExtractionCallback
,VehicleLicenseExtractionCallback
public interface ProgressCallback
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onUploadingDone
(int captureType) This method is called when the uploading process of the image is done, so now the processing of the image has startedvoid
onUploadProgress
(int captureType, int progress) This method is called when we the SDK sending and processing the API request
-
Method Details
-
onUploadProgress
void onUploadProgress(int captureType, int progress) This method is called when we the SDK sending and processing the API request- Parameters:
captureType
- the capture type of the CaptureResult you are sending to the API viaBiometricDigified.send(CaptureResult, IdExtractionCallback)
orBiometricDigified.send(CaptureResult, FaceMatchCallback)
progress
- integer representing the progress of the uploading
-
onUploadingDone
void onUploadingDone(int captureType) This method is called when the uploading process of the image is done, so now the processing of the image has started- Parameters:
captureType
- the capture type of the CaptureResult you are sending to the API viaBiometricDigified.send(CaptureResult, IdExtractionCallback)
orBiometricDigified.send(CaptureResult, FaceMatchCallback)
-