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

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

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

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

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

/**
 * Variant of {@link ObjObjIntConsumer} 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 
 *            {@link Throwable} type
 */
@FunctionalInterface
public interface EObjObjIntConsumer extends ObjObjIntConsumer {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy