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

cn.sylinx.hbatis.ds.ResourceBlock Maven / Gradle / Ivy

The newest version!
package cn.sylinx.hbatis.ds;

import cn.sylinx.hbatis.exception.BlockException;

/**
 * 资源执行块
 * 
 * @author han
 *
 * @param 
 *            R
 * @param 
 *            O
 */
public interface ResourceBlock {

	/**
	 * 资源执行
	 * 
	 * @param resource
	 *            R
	 * @return O
	 * @throws Exception
	 *             Exception
	 */
	O apply(R resource) throws BlockException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy