com.github.longdt.vertxorm.util.TriConsumer Maven / Gradle / Ivy
package com.github.longdt.vertxorm.util;
public interface TriConsumer {
/**
* Performs this operation on the given arguments.
*
* @param t the first input argument
* @param u the second input argument
* @param v the third input argument
*/
void accept(T t, U u, V v);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy