All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.markozajc.ef.triconsumer.except.ETriConsumer Maven / Gradle / Ivy

package com.github.markozajc.ef.triconsumer.except;

import static com.github.markozajc.ef.Utilities.asUnchecked;

import com.github.markozajc.ef.triconsumer.TriConsumer;

/**
 * Variant of {@link TriConsumer} capable of throwing a generic {@link Throwable}.
 *
 * @author Marko Zajc
 *
 * @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 third argument to the operation
 * @param 
 *            {@link Throwable} type
 */
@FunctionalInterface
public interface ETriConsumer extends TriConsumer {

	@Override
	default void accept(T t, U u, V v) {
		try {
			acceptChecked(t, u, v);
		} catch (Throwable e) { // NOSONAR can't catch generic exceptions
			throw asUnchecked(e);
		}
	}

	/**
	 * Same as {@link #accept(Object, Object, Object)}, but throws a checked exception.
	 *
	 * @param t
	 *            the first input argument
	 * @param u
	 *            the second input argument
	 * @param v
	 *            the third input argument
	 *
	 * @throws E
	 *             the defined exception type
	 */
	void acceptChecked(T t, U u, V v) throws E;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy