當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。