Package io.mosip.kernel.core.function
Interface ConsumerWithThrowable<T,E extends Throwable>
-
- Type Parameters:
T- the generic typeE- the element type that can be any Throwable
- 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 ConsumerWithThrowable<T,E extends Throwable>
Consumer Functional interface which can throw Exception.- Author:
- Loganathan Sekar
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(T t)Expression that accepts the given arguments.
-