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

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

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

/**
 * 资源接口
 * 
 * @author han
 *
 * @param 
 */
public interface Resource {

	/**
	 * 获取资源对象
	 * 
	 * @return R
	 */
	R get();

	/**
	 * 释放资源对象
	 * 
	 * @param resource
	 *            资源对象
	 */
	void close(R resource);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy