com.github.markozajc.ef.biconsumer.except.EObjBooleanConsumer Maven / Gradle / Ivy
package com.github.markozajc.ef.biconsumer.except;
import static com.github.markozajc.ef.Utilities.asUnchecked;
import com.github.markozajc.ef.biconsumer.ObjBooleanConsumer;
/**
* Variant of {@link ObjBooleanConsumer} capable of throwing a generic
* {@link Throwable}.
*
* @author Marko Zajc
*
* @param
* the type of the first argument to the operation
* @param
* {@link Throwable} type
*/
@FunctionalInterface
public interface EObjBooleanConsumer extends ObjBooleanConsumer {
@Override
default void accept(T t, boolean p) {
try {
acceptChecked(t, p);
} catch (Throwable e) { // NOSONAR can't catch generic exceptions
throw asUnchecked(e);
}
}
/**
* Same as {@link #accept(Object, boolean)}, but throws a checked exception.
*
* @param t
* the first input argument
* @param p
* the second ({$code boolean})input argument
*
* @throws E
* the defined exception type
*/
void acceptChecked(T t, boolean p) throws E;
}