org.codefilarete.tool.function.SerializableThrowingBiConsumer Maven / Gradle / Ivy
package org.codefilarete.tool.function;
import java.io.Serializable;
/**
* @author Guillaume Mary
*/
@FunctionalInterface
public interface SerializableThrowingBiConsumer extends Serializable {
/**
* 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;
}