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

com.anysoft.pool.Pool Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.anysoft.pool;

import com.anysoft.util.BaseException;
import com.anysoft.util.Properties;
import com.anysoft.util.Reportable;

/**
 * 缓冲池接口
 * 
 * @author duanyy
 * @since 1.1.0
 * 
 * @param  缓冲池对象
 * 
 * @version 1.2.2 [20140722 duanyy]
 * - 可缓冲的对象改为AutoCloseable
 * 
 * @version 1.3.2 [20140815 duanyy]
 * - 集成Reportable接口
 */
public interface Pool extends Reportable{
	
	/**
	 * 创建缓冲池
	 * 
	 * @param props 环境变量
	 */
	public void create(Properties props);
	
	/**
	 * 关闭缓冲池
	 */
	public void close();
	
	/**
	 * 从缓冲池中借出缓冲对象
	 * @param priority 优先级
	 * @return pooled
	 * @throws BaseException
	 */
	public pooled borrowObject(int priority,int timeout) ;
	
	/**
	 * 归还缓冲对象
	 * @param obj 缓冲对象
	 */
	public void returnObject(pooled obj);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy