
Utils.function.BiConsumerException Maven / Gradle / Ivy
package Utils.function;
import java.util.function.Consumer;
/**
* Represents an operation that accepts two input arguments and returns no
* result but can throw an exception. This is the three-arity specialization of {@link Consumer}.
* Unlike most other functional interfaces, {@code BiConsumerException} is expected
* to operate via side-effects.
* This is a functional interface
* whose functional method is {@link #accept(Object, Object)}.
*
* @param the type of the first argument to the operation
* @param the type of the second argument to the operation
* @param the type of the throwable to the operation
* @see Consumer
* @since 1.0
*/
@FunctionalInterface
public interface BiConsumerException {
/**
* Performs this operation on the given arguments.
*
* @param t the first input argument
* @param u the second input argument
*/
void accept(T t, U u) throws E;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy