Package com.appliedrec.verid.core2
Interface VerIDFactoryDelegate
- 
public interface VerIDFactoryDelegateDelegate for `VerIDFactory`- Since:
 - 1.0.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidonVerIDCreated(VerIDFactory factory, VerID verID)Invoked when Ver-ID factory creates an instance of Ver-ID environmentvoidonVerIDCreationFailed(VerIDFactory factory, java.lang.Exception error)Invoked when Ver-ID factory fails to create an instance of Ver-ID environmentdefault voidonVerIDLoadProgress(VerIDFactory factory, float progress, VerIDFactory.Task task)Invoked when Ver-ID factory is loading the Ver-ID environment 
 - 
 
- 
- 
Method Detail
- 
onVerIDCreated
void onVerIDCreated(@NonNull VerIDFactory factory, @NonNull VerID verID)Invoked when Ver-ID factory creates an instance of Ver-ID environment- Parameters:
 factory- Factory that created the Ver-ID environment instanceverID- The created Ver-ID environment- Since:
 - 2.0.0
 
 
- 
onVerIDCreationFailed
void onVerIDCreationFailed(@NonNull VerIDFactory factory, @NonNull java.lang.Exception error)Invoked when Ver-ID factory fails to create an instance of Ver-ID environment- Parameters:
 factory- Factory that attempted to create the Ver-ID environment instanceerror- Exception that caused the creation to fail- Since:
 - 2.0.0
 
 
- 
onVerIDLoadProgress
default void onVerIDLoadProgress(@NonNull VerIDFactory factory, float progress, VerIDFactory.Task task)Invoked when Ver-ID factory is loading the Ver-ID environment- Parameters:
 factory- Factory that is loading the Ver-ID environmentprogress- Progress of the loading operationtask- Task that is being performed- Since:
 - 2.10.0
 
 
 - 
 
 -