Interface VerIDFactoryDelegate


  • public interface VerIDFactoryDelegate
    Delegate for `VerIDFactory`
    Since:
    1.0.0
    • 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 instance
        verID - 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 instance
        error - 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 environment
        progress - Progress of the loading operation
        task - Task that is being performed
        Since:
        2.10.0