当前位置: 首页>>代码示例>>Java>>正文


Java GenericObjectPool.setMinIdle方法代码示例

本文整理汇总了Java中org.apache.commons.pool.impl.GenericObjectPool.setMinIdle方法的典型用法代码示例。如果您正苦于以下问题:Java GenericObjectPool.setMinIdle方法的具体用法?Java GenericObjectPool.setMinIdle怎么用?Java GenericObjectPool.setMinIdle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.commons.pool.impl.GenericObjectPool的用法示例。


在下文中一共展示了GenericObjectPool.setMinIdle方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: configureGenericObjectPool

import org.apache.commons.pool.impl.GenericObjectPool; //导入方法依赖的package包/类
protected void configureGenericObjectPool(GenericObjectPool genericObjectPool) throws SyslogRuntimeException {
	SyslogPoolConfigIF poolConfig = null;
	
	try {
		poolConfig = (SyslogPoolConfigIF) this.syslog.getConfig();
		
	} catch (ClassCastException cce) {
		throw new SyslogRuntimeException("config must implement interface SyslogPoolConfigIF");
	}
	
	genericObjectPool.setMaxActive(poolConfig.getMaxActive());
	genericObjectPool.setMaxIdle(poolConfig.getMaxIdle());
	genericObjectPool.setMaxWait(poolConfig.getMaxWait());
	genericObjectPool.setMinEvictableIdleTimeMillis(poolConfig.getMinEvictableIdleTimeMillis());
	genericObjectPool.setMinIdle(poolConfig.getMinIdle());
	genericObjectPool.setNumTestsPerEvictionRun(poolConfig.getNumTestsPerEvictionRun());
	genericObjectPool.setSoftMinEvictableIdleTimeMillis(poolConfig.getSoftMinEvictableIdleTimeMillis());
	genericObjectPool.setTestOnBorrow(poolConfig.isTestOnBorrow());
	genericObjectPool.setTestOnReturn(poolConfig.isTestOnReturn());
	genericObjectPool.setTestWhileIdle(poolConfig.isTestWhileIdle());
	genericObjectPool.setTimeBetweenEvictionRunsMillis(poolConfig.getTimeBetweenEvictionRunsMillis());
	genericObjectPool.setWhenExhaustedAction(poolConfig.getWhenExhaustedAction());
}
 
开发者ID:syslog4j,项目名称:syslog4j,代码行数:24,代码来源:GenericSyslogPoolFactory.java

示例2: configureGenericObjectPool

import org.apache.commons.pool.impl.GenericObjectPool; //导入方法依赖的package包/类
protected void configureGenericObjectPool(GenericObjectPool genericObjectPool) throws SyslogRuntimeException {
    SyslogPoolConfigIF poolConfig = null;

    try {
        poolConfig = (SyslogPoolConfigIF) this.syslog.getConfig();

    } catch (ClassCastException cce) {
        throw new SyslogRuntimeException("config must implement interface SyslogPoolConfigIF");
    }

    genericObjectPool.setMaxActive(poolConfig.getMaxActive());
    genericObjectPool.setMaxIdle(poolConfig.getMaxIdle());
    genericObjectPool.setMaxWait(poolConfig.getMaxWait());
    genericObjectPool.setMinEvictableIdleTimeMillis(poolConfig.getMinEvictableIdleTimeMillis());
    genericObjectPool.setMinIdle(poolConfig.getMinIdle());
    genericObjectPool.setNumTestsPerEvictionRun(poolConfig.getNumTestsPerEvictionRun());
    genericObjectPool.setSoftMinEvictableIdleTimeMillis(poolConfig.getSoftMinEvictableIdleTimeMillis());
    genericObjectPool.setTestOnBorrow(poolConfig.isTestOnBorrow());
    genericObjectPool.setTestOnReturn(poolConfig.isTestOnReturn());
    genericObjectPool.setTestWhileIdle(poolConfig.isTestWhileIdle());
    genericObjectPool.setTimeBetweenEvictionRunsMillis(poolConfig.getTimeBetweenEvictionRunsMillis());
    genericObjectPool.setWhenExhaustedAction(poolConfig.getWhenExhaustedAction());
}
 
开发者ID:graylog-labs,项目名称:syslog4j-graylog2,代码行数:24,代码来源:GenericSyslogPoolFactory.java

示例3: createObjectPool

import org.apache.commons.pool.impl.GenericObjectPool; //导入方法依赖的package包/类
/**
 * Subclasses can override this if they want to return a specific Commons pool.
 * They should apply any configuration properties to the pool here.
 * <p>Default is a GenericObjectPool instance with the given pool size.
 * @return an empty Commons {@code ObjectPool}.
 * @see org.apache.commons.pool.impl.GenericObjectPool
 * @see #setMaxSize
 */
protected ObjectPool createObjectPool() {
	GenericObjectPool gop = new GenericObjectPool(this);
	gop.setMaxActive(getMaxSize());
	gop.setMaxIdle(getMaxIdle());
	gop.setMinIdle(getMinIdle());
	gop.setMaxWait(getMaxWait());
	gop.setTimeBetweenEvictionRunsMillis(getTimeBetweenEvictionRunsMillis());
	gop.setMinEvictableIdleTimeMillis(getMinEvictableIdleTimeMillis());
	gop.setWhenExhaustedAction(getWhenExhaustedAction());
	return gop;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:20,代码来源:CommonsPoolTargetSource.java

示例4: DxTransformer

import org.apache.commons.pool.impl.GenericObjectPool; //导入方法依赖的package包/类
public DxTransformer() {
	super();
	
	transformerPool = new GenericObjectPool(new PooledDxTransformerFactory());
       transformerPool.setMinIdle(MIN_IDLE_TRANSFORMERS);
       transformerPool.setMaxIdle(MAX_IDLE_TRANSFORMERS);
       transformerPool.setMaxActive(MAX_ACTIVE_TRANSFORMERS);

	registerSourceType(DataTypeFactory.create(org.w3c.dom.Node.class));
	registerSourceType(DataTypeFactory.create(InputSource.class));
	registerSourceType(DataTypeFactory.create(NullPayload.class));

	contextProperties = new HashMap<String, Object>();
}
 
开发者ID:skjolber,项目名称:mule-module-dxpath,代码行数:15,代码来源:DxTransformer.java

示例5: setupDataSource

import org.apache.commons.pool.impl.GenericObjectPool; //导入方法依赖的package包/类
/**
 *
 * @param connectURI - JDBC Connection URI
 * @param username - JDBC Connection username
 * @param password - JDBC Connection password
 * @param minIdle - Minimum number of idel connection in the connection pool
 * @param maxActive - Connection Pool Maximum Capacity (Size)
 * @param timeout - timeout
 * @throws Exception
 */
public static DataSource setupDataSource(String connectURI, 
    String username, 
    String password,
    int minIdle, int maxActive, int timeout
    ) throws Exception {

    //
    // First, we'll need a ObjectPool that serves as the
    // actual pool of connections.
    //
    // We'll use a GenericObjectPool instance, although
    // any ObjectPool implementation will suffice.
    //
    GenericObjectPool connectionPool = new GenericObjectPool(null);

    connectionPool.setMinIdle( minIdle );
    connectionPool.setMaxActive( maxActive );

    ConnectionManager._pool = connectionPool; 
    // we keep it for two reasons
  // #1 We need it for statistics/debugging
  // #2 PoolingDataSource does not have getPool()
  // method, for some obscure, weird reason.

    //
    // Next, we'll create a ConnectionFactory that the
    // pool will use to create Connections.
    // We'll use the DriverManagerConnectionFactory,
    // using the connect string from configuration
    //
    ConnectionFactory connectionFactory = 
        new DriverManagerConnectionFactory(connectURI,username, password);

    //
    // Now we'll create the PoolableConnectionFactory, which wraps
    // the "real" Connections created by the ConnectionFactory with
    // the classes that implement the pooling functionality.
    //
    PoolableConnectionFactory poolableConnectionFactory =
            new PoolableConnectionFactory(
        connectionFactory,connectionPool,null,null,false,true);

    PoolingDataSource dataSource = 
        new PoolingDataSource(connectionPool);

    return dataSource;
}
 
开发者ID:mikkeliamk,项目名称:osa,代码行数:58,代码来源:ConnectionManager.java

示例6: setupDataSource

import org.apache.commons.pool.impl.GenericObjectPool; //导入方法依赖的package包/类
/**
 * 
 * @param connectURI
 *            - JDBC Connection URI
 * @param username
 *            - JDBC Connection username
 * @param password
 *            - JDBC Connection password
 * @param minIdle
 *            - Minimum number of idle connection in the connection pool
 * @param maxActive
 *            - Connection Pool Maximum Capacity (Size)
 * @throws Exception
 */
public  DataSource setupDataSource(String connectURI,
		String username, String password, int minIdle, int maxActive)
throws Exception {
	//
	// First, we'll need a ObjectPool that serves as the
	// actual pool of connections.
	//
	// We'll use a GenericObjectPool instance, although
	// any ObjectPool implementation will suffice.
	//
	GenericObjectPool connectionPool = new GenericObjectPool(null);

	connectionPool.setMinIdle(minIdle);
	connectionPool.setMaxActive(maxActive);
	

	_pool = connectionPool;
	// we keep it for two reasons
	// #1 We need it for statistics/debugging
	// #2 PoolingDataSource does not have getPool()
	// method, for some obscure, weird reason.

	//
	// Next, we'll create a ConnectionFactory that the
	// pool will use to create Connections.
	// We'll use the DriverManagerConnectionFactory,
	// using the connect string from configuration
	//
	ConnectionFactory connectionFactory = new DriverManagerConnectionFactory(
			connectURI, username, password);
	
	
	//
	// Now we'll create the PoolableConnectionFactory, which wraps
	// the "real" Connections created by the ConnectionFactory with
	// the classes that implement the pooling functionality.
	//
	PoolableConnectionFactory poolableConnectionFactory = new PoolableConnectionFactory(
			connectionFactory, connectionPool, null, null, false, true);
	poolableConnectionFactory.setValidationQuery(getDbType().getValidationQuery());
	
	PoolingDataSource dataSource = new PoolingDataSource(connectionPool);
	

	return dataSource;
}
 
开发者ID:cheliequan,项目名称:dbforbix,代码行数:61,代码来源:DBConnManager.java


注:本文中的org.apache.commons.pool.impl.GenericObjectPool.setMinIdle方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。