congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
GenericObjectPool.getMinEvictableIdleTimeMillis
Code IndexAdd Tabnine to your IDE (free)

How to use
getMinEvictableIdleTimeMillis
method
in
org.apache.commons.pool.impl.GenericObjectPool

Best Java code snippets using org.apache.commons.pool.impl.GenericObjectPool.getMinEvictableIdleTimeMillis (Showing top 8 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew ArrayList()
  • Codota Iconnew LinkedList()
  • Smart code suggestions by Tabnine
}
origin: commons-pool/commons-pool

if ((getMinEvictableIdleTimeMillis() > 0) &&
    (idleTimeMilis > getMinEvictableIdleTimeMillis())) {
  removeObject = true;
} else if ((getSoftMinEvictableIdleTimeMillis() > 0) &&
origin: uk.org.mygrid.resources/boca-model

public long getReadConnectionPoolMinIdleTime() {
  return roPool.getMinEvictableIdleTimeMillis();
}
origin: uk.org.mygrid.resources/boca-model

public long getQueryConnectionPoolMinIdleTime() {
  return queryPool.getMinEvictableIdleTimeMillis();
}
origin: uk.org.mygrid.resources/boca-model

public long getWriteConnectionPoolMinIdleTime() {
  return rwPool.getMinEvictableIdleTimeMillis();
}
origin: org.apache.openjpa/openjpa-all

if ((getMinEvictableIdleTimeMillis() > 0) &&
    (idleTimeMilis > getMinEvictableIdleTimeMillis())) {
  removeObject = true;
} else if ((getSoftMinEvictableIdleTimeMillis() > 0) &&
origin: org.apache.commons/com.springsource.org.apache.commons.pool

if ((getMinEvictableIdleTimeMillis() > 0) &&
    (idleTimeMilis > getMinEvictableIdleTimeMillis())) {
  removeObject = true;
} else if ((getSoftMinEvictableIdleTimeMillis() > 0) &&
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-pool

if ((getMinEvictableIdleTimeMillis() > 0) &&
    (idleTimeMilis > getMinEvictableIdleTimeMillis())) {
  removeObject = true;
} else if ((getSoftMinEvictableIdleTimeMillis() > 0) &&
origin: org.apache.commons/pool

if ((getMinEvictableIdleTimeMillis() > 0) &&
    (idleTimeMilis > getMinEvictableIdleTimeMillis())) {
  removeObject = true;
} else if ((getSoftMinEvictableIdleTimeMillis() > 0) &&
org.apache.commons.pool.implGenericObjectPoolgetMinEvictableIdleTimeMillis

Javadoc

Returns the minimum amount of time an object may sit idle in the pool before it is eligible for eviction by the idle object evictor (if any).

Popular methods of GenericObjectPool

  • <init>
    Create a new GenericObjectPool using the specified values.
  • returnObject
    Returns an object instance to the pool. If #getMaxIdle() is set to a positive value and the number
  • borrowObject
    Borrows an object from the pool. If there is an idle instance available in the pool, then either th
  • setMaxActive
    Sets the cap on the number of objects that can be allocated by the pool (checked out to clients, or
  • close
    Closes the pool. Once the pool is closed, #borrowObject()will fail with IllegalStateException, but #
  • setMaxIdle
    Sets the cap on the number of "idle" instances in the pool. If maxIdle is set too low on heavily loa
  • setMinIdle
    Sets the minimum number of objects allowed in the pool before the evictor thread (if active) spawns
  • setTimeBetweenEvictionRunsMillis
    Sets the number of milliseconds to sleep between runs of the idle object evictor thread. When non-po
  • setMinEvictableIdleTimeMillis
    Sets the minimum amount of time an object may sit idle in the pool before it is eligible for evictio
  • setMaxWait
    Sets the maximum amount of time (in milliseconds) the #borrowObject method should block before throw
  • setTestOnBorrow
    When true, objects will be PoolableObjectFactory#validateObjectbefore being returned by the #borrowO
  • setWhenExhaustedAction
    Sets the action to take when the #borrowObject method is invoked when the pool is exhausted (the max
  • setTestOnBorrow,
  • setWhenExhaustedAction,
  • getNumActive,
  • getNumIdle,
  • setTestWhileIdle,
  • setNumTestsPerEvictionRun,
  • setTestOnReturn,
  • invalidateObject,
  • clear,
  • addObject

Popular in Java

  • Start an intent from android
  • getResourceAsStream (ClassLoader)
  • onRequestPermissionsResult (Fragment)
  • putExtra (Intent)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • ImageIO (javax.imageio)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now