io.polaris.core.function.ExecutableWithArgs3 Maven / Gradle / Ivy
package io.polaris.core.function;
/**
* @author Qt
* @since 1.8
*/
@FunctionalInterface
public interface ExecutableWithArgs3 {
void execute(A a, B b, C c) throws Exception;
}
package io.polaris.core.function;
/**
* @author Qt
* @since 1.8
*/
@FunctionalInterface
public interface ExecutableWithArgs3 {
void execute(A a, B b, C c) throws Exception;
}