Package com.marcpg.libpg.util
Interface ThrowingConsumer<T,E extends Exception>
- Type Parameters:
T
- the type of the first argument to the operation.E
- the type of exception that is thrown when accepted.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents an operation that accepts an input, returns no result
and throws a specified exception when
accept(Object)
accepted}.- See Also:
-
Method Summary
-
Method Details
-
accept
Performs this operation on the given arguments.- Parameters:
t
- the first input argument- Throws:
E
- the specified exception
-