Package com.appliedrec.verid.core2
Interface UserIdentificationCallbacks
-
public interface UserIdentificationCallbacks
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
onComplete(IdentifiedFace[] identifiedFaces)
Called when user identification completesvoid
onError(java.lang.Throwable error)
Called when user identification failsdefault void
onProgress(double progress)
Called when user identification task progresses
-
-
-
Method Detail
-
onProgress
default void onProgress(@FloatRange(from=0.0,to=1.0) double progress)
Called when user identification task progresses- Parameters:
progress
- Progress of the user identification task
-
onComplete
void onComplete(IdentifiedFace[] identifiedFaces)
Called when user identification completes- Parameters:
identifiedFaces
- Identified faces
-
onError
void onError(java.lang.Throwable error)
Called when user identification fails- Parameters:
error
- Cause of the failure
-
-