
cn.handyplus.lib.db.func.VoidFunc Maven / Gradle / Ivy
The newest version!
package cn.handyplus.lib.db.func;
import java.io.Serializable;
/**
* 函数对象
*
* @author handy
* @since 3.10.8
*/
@FunctionalInterface
public interface VoidFunc extends Serializable {
/**
* 执行函数
*
* @param parameter 参数
* @throws Exception 自定义异常
*/
void call(P parameter) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy