Interface FallibleIntConsumer<X extends Throwable>
- Type Parameters:
X- the type of the exception potentially being thrown
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An alternative to the
IntConsumer interface that allows the functional
method to throw a checked exception.- Author:
- Ayco Holleman
-
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(int value) Performs this operation on the given argument.
-
Method Details
-
accept
void accept(int value) throws X Performs this operation on the given argument.- Parameters:
value- the input argument- Throws:
X- if the operation fails
-