cn.sylinx.hbatis.ds.Resource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
package cn.sylinx.hbatis.ds;
/**
* 资源接口
*
* @author han
*
* @param
*/
public interface Resource {
/**
* 获取资源对象
*
* @return R
*/
R get();
/**
* 释放资源对象
*
* @param resource
* 资源对象
*/
void close(R resource);
}