ebul-func/src/main/java/info/ebenoit/ebul/func/ThrowingBiConsumer.java
Emmanuel BENOîT 34b97af161 Throwing functions let VM errors pass through
VM errors ought to be rethrown without being wrapped inside a
FunctionException.
2015-09-17 09:42:23 +02:00

56 lines
1.3 KiB
Java

package info.ebenoit.ebul.func;
import java.util.function.BiConsumer;
/**
* This interface supports a {@link BiConsumer} that can throw checked exceptions. Checked exceptions are then
* transmitted using a {@link FunctionException} runtime exception.
*
* @author <a href="mailto:ebenoit@ebenoit.info">E. Benoît</a>
*/
@FunctionalInterface
public interface ThrowingBiConsumer< T , U >
extends BiConsumer< T , U >
{
/**
* Performs the operation on the given arguments, or throws a {@link FunctionException} if a checked exception
* occurs.
*
* @param t
* the first argument
* @param u
* the second argument
* @throws FunctionException
* if any checked exception occurs during the function's execution
*/
@Override
default void accept( final T t , final U u )
{
try {
this.throwingAccept( t , u );
} catch ( final Error | RuntimeException e ) {
throw e;
} catch ( final Throwable e ) {
throw new FunctionException( e );
}
}
/**
* Performs the operation on the given arguments, or throws an arbitrary exception
*
* @param t
* the first argument
* @param u
* the second argument
* @throws Throwable
* any exception
*/
public void throwingAccept( T t , U u )
throws Throwable;
}