Interface ProgressCallback

All Known Subinterfaces:
FaceMatchCallback, GenericIdExtractionCallback, IdExtractionCallback, PassportExtractionCallback, VehicleLicenseExtractionCallback

public interface ProgressCallback
  • Method Summary

    Modifier and Type
    Method
    Description
    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
    void
    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 via BiometricDigified.send(CaptureResult, IdExtractionCallback) or BiometricDigified.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 via BiometricDigified.send(CaptureResult, IdExtractionCallback) or BiometricDigified.send(CaptureResult, FaceMatchCallback)