Interface DidomiCallable<E extends java.lang.Exception>

  • Type Parameters:
    E - exception that could be thrown when the abstract method is called.
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface DidomiCallable<E extends java.lang.Exception>
    This is a functional interface which abstract method throws an exception and returns void. It was created to pass in a functionality into one of the methods of the Didomi SDK. It should mostly be used as a lambda expression.
    • Method Detail

      • call

        void call()
           throws E extends java.lang.Exception
        Abstract method of the DidomiCallable functional interface.
        Throws:
        E - exception that could be thrown when using this functional interface.
        E extends java.lang.Exception