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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcall()Abstract method of the DidomiCallable functional interface.
-