Java Doc for FairGenericObjectPool.java in  » Web-Crawler » heritrix » org » apache » commons » pool » impl » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Crawler » heritrix » org.apache.commons.pool.impl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.commons.pool.impl.GenericObjectPool
   org.apache.commons.pool.impl.FairGenericObjectPool

FairGenericObjectPool
public class FairGenericObjectPool extends GenericObjectPool (Code)
Version of GenericObjectPool which is 'fair' with respect to the client threads using FairGenericObjectPool.borrowObject borrowObject . Those which enter first will receive objects from the pool first.
See Also:   GenericObjectPool
author:
   Gordon Mohr
version:
   $Revision: 4672 $ $Date: 2006-09-27 00:03:16 +0000 (Wed, 27 Sep 2006) $


Field Summary
protected  List_borrowerQueue
    

Constructor Summary
public  FairGenericObjectPool()
     Create a new FairGenericObjectPool.
public  FairGenericObjectPool(PoolableObjectFactory factory)
     Create a new FairGenericObjectPool using the specified values.
public  FairGenericObjectPool(PoolableObjectFactory factory, GenericObjectPool.Config config)
     Create a new FairGenericObjectPool using the specified values.
public  FairGenericObjectPool(PoolableObjectFactory factory, int maxActive)
     Create a new FairGenericObjectPool using the specified values.
public  FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait)
     Create a new FairGenericObjectPool using the specified values.
public  FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, boolean testOnBorrow, boolean testOnReturn)
     Create a new FairGenericObjectPool using the specified values.
public  FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle)
     Create a new FairGenericObjectPool using the specified values.
public  FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn)
     Create a new FairGenericObjectPool using the specified values.
public  FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)
     Create a new FairGenericObjectPool using the specified values.
public  FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, int minIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)
     Create a new FairGenericObjectPool using the specified values.
public  FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, int minIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle, long softMinEvictableIdleTimeMillis)
     Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects
Parameters:
  maxActive - the maximum number of objects that can be borrowed from me at one time (see FairGenericObjectPool.setMaxActive)
Parameters:
  whenExhaustedAction - the action to take when the pool is exhausted (see FairGenericObjectPool.setWhenExhaustedAction)
Parameters:
  maxWait - the maximum amount of time to wait for an idle object when the pool is exhausted an and whenExhaustedAction is FairGenericObjectPool.WHEN_EXHAUSTED_BLOCK (otherwise ignored) (see FairGenericObjectPool.setMaxWait)
Parameters:
  maxIdle - the maximum number of idle objects in my pool (see FairGenericObjectPool.setMaxIdle)
Parameters:
  minIdle - the minimum number of idle objects in my pool (see FairGenericObjectPool.setMinIdle)
Parameters:
  testOnBorrow - whether or not to validate objects before they are returned by the FairGenericObjectPool.borrowObject method (see FairGenericObjectPool.setTestOnBorrow)
Parameters:
  testOnReturn - whether or not to validate objects after they are returned to the FairGenericObjectPool.returnObject method (see FairGenericObjectPool.setTestOnReturn)
Parameters:
  timeBetweenEvictionRunsMillis - the amount of time (in milliseconds) to sleep between examining idle objects for eviction (see FairGenericObjectPool.setTimeBetweenEvictionRunsMillis)
Parameters:
  numTestsPerEvictionRun - the number of idle objects to examine per run within the idle object eviction thread (if any) (see FairGenericObjectPool.setNumTestsPerEvictionRun)
Parameters:
  minEvictableIdleTimeMillis - the minimum number of milliseconds an object can sit idle in the pool before it is eligable for evcition (see FairGenericObjectPool.setMinEvictableIdleTimeMillis)
Parameters:
  testWhileIdle - whether or not to validate objects in the idle object eviction thread, if any (see FairGenericObjectPool.setTestWhileIdle)
Parameters:
  softMinEvictableIdleTimeMillis - the minimum number of milliseconds an object can sit idle in the pool before it is eligable for evcition with the extra condition that at least "minIdle" amount of object remain in the pool.

Method Summary
public  ObjectborrowObject()
    

Field Detail
_borrowerQueue
protected List _borrowerQueue(Code)
Waiting borrowers (threads in #borrowObject )




Constructor Detail
FairGenericObjectPool
public FairGenericObjectPool()(Code)
Create a new FairGenericObjectPool.



FairGenericObjectPool
public FairGenericObjectPool(PoolableObjectFactory factory)(Code)
Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects



FairGenericObjectPool
public FairGenericObjectPool(PoolableObjectFactory factory, GenericObjectPool.Config config)(Code)
Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects
Parameters:
  config - a non-null GenericObjectPool.Config describing my configuration



FairGenericObjectPool
public FairGenericObjectPool(PoolableObjectFactory factory, int maxActive)(Code)
Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects
Parameters:
  maxActive - the maximum number of objects that can be borrowed from me at one time (see FairGenericObjectPool.setMaxActive)



FairGenericObjectPool
public FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait)(Code)
Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects
Parameters:
  maxActive - the maximum number of objects that can be borrowed from me at one time (see FairGenericObjectPool.setMaxActive)
Parameters:
  whenExhaustedAction - the action to take when the pool is exhausted (see FairGenericObjectPool.getWhenExhaustedAction)
Parameters:
  maxWait - the maximum amount of time to wait for an idle object when the pool is exhausted an and whenExhaustedAction is FairGenericObjectPool.WHEN_EXHAUSTED_BLOCK (otherwise ignored) (see FairGenericObjectPool.getMaxWait)



FairGenericObjectPool
public FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, boolean testOnBorrow, boolean testOnReturn)(Code)
Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects
Parameters:
  maxActive - the maximum number of objects that can be borrowed from me at one time (see FairGenericObjectPool.setMaxActive)
Parameters:
  whenExhaustedAction - the action to take when the pool is exhausted (see FairGenericObjectPool.getWhenExhaustedAction)
Parameters:
  maxWait - the maximum amount of time to wait for an idle object when the pool is exhausted an and whenExhaustedAction is FairGenericObjectPool.WHEN_EXHAUSTED_BLOCK (otherwise ignored) (see FairGenericObjectPool.getMaxWait)
Parameters:
  testOnBorrow - whether or not to validate objects before they are returned by the FairGenericObjectPool.borrowObject method (see FairGenericObjectPool.getTestOnBorrow)
Parameters:
  testOnReturn - whether or not to validate objects after they are returned to the FairGenericObjectPool.returnObject method (see FairGenericObjectPool.getTestOnReturn)



FairGenericObjectPool
public FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle)(Code)
Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects
Parameters:
  maxActive - the maximum number of objects that can be borrowed from me at one time (see FairGenericObjectPool.setMaxActive)
Parameters:
  whenExhaustedAction - the action to take when the pool is exhausted (see FairGenericObjectPool.getWhenExhaustedAction)
Parameters:
  maxWait - the maximum amount of time to wait for an idle object when the pool is exhausted an and whenExhaustedAction is FairGenericObjectPool.WHEN_EXHAUSTED_BLOCK (otherwise ignored) (see FairGenericObjectPool.getMaxWait)
Parameters:
  maxIdle - the maximum number of idle objects in my pool (see FairGenericObjectPool.getMaxIdle)



FairGenericObjectPool
public FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn)(Code)
Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects
Parameters:
  maxActive - the maximum number of objects that can be borrowed from me at one time (see FairGenericObjectPool.setMaxActive)
Parameters:
  whenExhaustedAction - the action to take when the pool is exhausted (see FairGenericObjectPool.getWhenExhaustedAction)
Parameters:
  maxWait - the maximum amount of time to wait for an idle object when the pool is exhausted an and whenExhaustedAction is FairGenericObjectPool.WHEN_EXHAUSTED_BLOCK (otherwise ignored) (see FairGenericObjectPool.getMaxWait)
Parameters:
  maxIdle - the maximum number of idle objects in my pool (see FairGenericObjectPool.getMaxIdle)
Parameters:
  testOnBorrow - whether or not to validate objects before they are returned by the FairGenericObjectPool.borrowObject method (see FairGenericObjectPool.getTestOnBorrow)
Parameters:
  testOnReturn - whether or not to validate objects after they are returned to the FairGenericObjectPool.returnObject method (see FairGenericObjectPool.getTestOnReturn)



FairGenericObjectPool
public FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)(Code)
Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects
Parameters:
  maxActive - the maximum number of objects that can be borrowed from me at one time (see FairGenericObjectPool.setMaxActive)
Parameters:
  whenExhaustedAction - the action to take when the pool is exhausted (see FairGenericObjectPool.setWhenExhaustedAction)
Parameters:
  maxWait - the maximum amount of time to wait for an idle object when the pool is exhausted an and whenExhaustedAction is FairGenericObjectPool.WHEN_EXHAUSTED_BLOCK (otherwise ignored) (see FairGenericObjectPool.setMaxWait)
Parameters:
  maxIdle - the maximum number of idle objects in my pool (see FairGenericObjectPool.setMaxIdle)
Parameters:
  testOnBorrow - whether or not to validate objects before they are returned by the FairGenericObjectPool.borrowObject method (see FairGenericObjectPool.setTestOnBorrow)
Parameters:
  testOnReturn - whether or not to validate objects after they are returned to the FairGenericObjectPool.returnObject method (see FairGenericObjectPool.setTestOnReturn)
Parameters:
  timeBetweenEvictionRunsMillis - the amount of time (in milliseconds) to sleep between examining idle objects for eviction (see FairGenericObjectPool.setTimeBetweenEvictionRunsMillis)
Parameters:
  numTestsPerEvictionRun - the number of idle objects to examine per run within the idle object eviction thread (if any) (see FairGenericObjectPool.setNumTestsPerEvictionRun)
Parameters:
  minEvictableIdleTimeMillis - the minimum number of milliseconds an object can sit idle in the pool before it is eligable for evcition (see FairGenericObjectPool.setMinEvictableIdleTimeMillis)
Parameters:
  testWhileIdle - whether or not to validate objects in the idle object eviction thread, if any (see FairGenericObjectPool.setTestWhileIdle)



FairGenericObjectPool
public FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, int minIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)(Code)
Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects
Parameters:
  maxActive - the maximum number of objects that can be borrowed from me at one time (see FairGenericObjectPool.setMaxActive)
Parameters:
  whenExhaustedAction - the action to take when the pool is exhausted (see FairGenericObjectPool.setWhenExhaustedAction)
Parameters:
  maxWait - the maximum amount of time to wait for an idle object when the pool is exhausted an and whenExhaustedAction is FairGenericObjectPool.WHEN_EXHAUSTED_BLOCK (otherwise ignored) (see FairGenericObjectPool.setMaxWait)
Parameters:
  maxIdle - the maximum number of idle objects in my pool (see FairGenericObjectPool.setMaxIdle)
Parameters:
  minIdle - the minimum number of idle objects in my pool (see FairGenericObjectPool.setMinIdle)
Parameters:
  testOnBorrow - whether or not to validate objects before they are returned by the FairGenericObjectPool.borrowObject method (see FairGenericObjectPool.setTestOnBorrow)
Parameters:
  testOnReturn - whether or not to validate objects after they are returned to the FairGenericObjectPool.returnObject method (see FairGenericObjectPool.setTestOnReturn)
Parameters:
  timeBetweenEvictionRunsMillis - the amount of time (in milliseconds) to sleep between examining idle objects for eviction (see FairGenericObjectPool.setTimeBetweenEvictionRunsMillis)
Parameters:
  numTestsPerEvictionRun - the number of idle objects to examine per run within the idle object eviction thread (if any) (see FairGenericObjectPool.setNumTestsPerEvictionRun)
Parameters:
  minEvictableIdleTimeMillis - the minimum number of milliseconds an object can sit idle in the pool before it is eligable for evcition (see FairGenericObjectPool.setMinEvictableIdleTimeMillis)
Parameters:
  testWhileIdle - whether or not to validate objects in the idle object eviction thread, if any (see FairGenericObjectPool.setTestWhileIdle)



FairGenericObjectPool
public FairGenericObjectPool(PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, int minIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle, long softMinEvictableIdleTimeMillis)(Code)
Create a new FairGenericObjectPool using the specified values.
Parameters:
  factory - the (possibly null)PoolableObjectFactory to use to create, validate and destroy objects
Parameters:
  maxActive - the maximum number of objects that can be borrowed from me at one time (see FairGenericObjectPool.setMaxActive)
Parameters:
  whenExhaustedAction - the action to take when the pool is exhausted (see FairGenericObjectPool.setWhenExhaustedAction)
Parameters:
  maxWait - the maximum amount of time to wait for an idle object when the pool is exhausted an and whenExhaustedAction is FairGenericObjectPool.WHEN_EXHAUSTED_BLOCK (otherwise ignored) (see FairGenericObjectPool.setMaxWait)
Parameters:
  maxIdle - the maximum number of idle objects in my pool (see FairGenericObjectPool.setMaxIdle)
Parameters:
  minIdle - the minimum number of idle objects in my pool (see FairGenericObjectPool.setMinIdle)
Parameters:
  testOnBorrow - whether or not to validate objects before they are returned by the FairGenericObjectPool.borrowObject method (see FairGenericObjectPool.setTestOnBorrow)
Parameters:
  testOnReturn - whether or not to validate objects after they are returned to the FairGenericObjectPool.returnObject method (see FairGenericObjectPool.setTestOnReturn)
Parameters:
  timeBetweenEvictionRunsMillis - the amount of time (in milliseconds) to sleep between examining idle objects for eviction (see FairGenericObjectPool.setTimeBetweenEvictionRunsMillis)
Parameters:
  numTestsPerEvictionRun - the number of idle objects to examine per run within the idle object eviction thread (if any) (see FairGenericObjectPool.setNumTestsPerEvictionRun)
Parameters:
  minEvictableIdleTimeMillis - the minimum number of milliseconds an object can sit idle in the pool before it is eligable for evcition (see FairGenericObjectPool.setMinEvictableIdleTimeMillis)
Parameters:
  testWhileIdle - whether or not to validate objects in the idle object eviction thread, if any (see FairGenericObjectPool.setTestWhileIdle)
Parameters:
  softMinEvictableIdleTimeMillis - the minimum number of milliseconds an object can sit idle in the pool before it is eligable for evcition with the extra condition that at least "minIdle" amount of object remain in the pool. (see FairGenericObjectPool.setSoftMinEvictableIdleTimeMillis)




Method Detail
borrowObject
public Object borrowObject() throws Exception(Code)

See Also:   org.apache.commons.pool.ObjectPool.borrowObject



Fields inherited from org.apache.commons.pool.impl.GenericObjectPool
final public static int DEFAULT_MAX_ACTIVE(Code)(Java Doc)
final public static int DEFAULT_MAX_IDLE(Code)(Java Doc)
final public static long DEFAULT_MAX_WAIT(Code)(Java Doc)
final public static long DEFAULT_MIN_EVICTABLE_IDLE_TIME_MILLIS(Code)(Java Doc)
final public static int DEFAULT_MIN_IDLE(Code)(Java Doc)
final public static int DEFAULT_NUM_TESTS_PER_EVICTION_RUN(Code)(Java Doc)
final public static long DEFAULT_SOFT_MIN_EVICTABLE_IDLE_TIME_MILLIS(Code)(Java Doc)
final public static boolean DEFAULT_TEST_ON_BORROW(Code)(Java Doc)
final public static boolean DEFAULT_TEST_ON_RETURN(Code)(Java Doc)
final public static boolean DEFAULT_TEST_WHILE_IDLE(Code)(Java Doc)
final public static long DEFAULT_TIME_BETWEEN_EVICTION_RUNS_MILLIS(Code)(Java Doc)
final public static byte DEFAULT_WHEN_EXHAUSTED_ACTION(Code)(Java Doc)
final static Timer EVICTION_TIMER(Code)(Java Doc)
final public static byte WHEN_EXHAUSTED_BLOCK(Code)(Java Doc)
final public static byte WHEN_EXHAUSTED_FAIL(Code)(Java Doc)
final public static byte WHEN_EXHAUSTED_GROW(Code)(Java Doc)
protected PoolableObjectFactory _factory(Code)(Java Doc)
protected int _maxActive(Code)(Java Doc)
protected long _maxWait(Code)(Java Doc)
protected int _numActive(Code)(Java Doc)
protected LinkedList _pool(Code)(Java Doc)
protected boolean _testOnBorrow(Code)(Java Doc)
protected byte _whenExhaustedAction(Code)(Java Doc)

Methods inherited from org.apache.commons.pool.impl.GenericObjectPool
public synchronized void addObject() throws Exception(Code)(Java Doc)
public synchronized Object borrowObject() throws Exception(Code)(Java Doc)
public synchronized void clear()(Code)(Java Doc)
public synchronized void close() throws Exception(Code)(Java Doc)
synchronized String debugInfo()(Code)(Java Doc)
public synchronized void evict() throws Exception(Code)(Java Doc)
public synchronized int getMaxActive()(Code)(Java Doc)
public synchronized int getMaxIdle()(Code)(Java Doc)
public synchronized long getMaxWait()(Code)(Java Doc)
public synchronized long getMinEvictableIdleTimeMillis()(Code)(Java Doc)
public synchronized int getMinIdle()(Code)(Java Doc)
public synchronized int getNumActive()(Code)(Java Doc)
public synchronized int getNumIdle()(Code)(Java Doc)
public synchronized int getNumTestsPerEvictionRun()(Code)(Java Doc)
public synchronized long getSoftMinEvictableIdleTimeMillis()(Code)(Java Doc)
public synchronized boolean getTestOnBorrow()(Code)(Java Doc)
public synchronized boolean getTestOnReturn()(Code)(Java Doc)
public synchronized boolean getTestWhileIdle()(Code)(Java Doc)
public synchronized long getTimeBetweenEvictionRunsMillis()(Code)(Java Doc)
public synchronized byte getWhenExhaustedAction()(Code)(Java Doc)
public synchronized void invalidateObject(Object obj) throws Exception(Code)(Java Doc)
public synchronized void returnObject(Object obj) throws Exception(Code)(Java Doc)
public synchronized void setConfig(GenericObjectPool.Config conf)(Code)(Java Doc)
public synchronized void setFactory(PoolableObjectFactory factory) throws IllegalStateException(Code)(Java Doc)
public synchronized void setMaxActive(int maxActive)(Code)(Java Doc)
public synchronized void setMaxIdle(int maxIdle)(Code)(Java Doc)
public synchronized void setMaxWait(long maxWait)(Code)(Java Doc)
public synchronized void setMinEvictableIdleTimeMillis(long minEvictableIdleTimeMillis)(Code)(Java Doc)
public synchronized void setMinIdle(int minIdle)(Code)(Java Doc)
public synchronized void setNumTestsPerEvictionRun(int numTestsPerEvictionRun)(Code)(Java Doc)
public synchronized void setSoftMinEvictableIdleTimeMillis(long softMinEvictableIdleTimeMillis)(Code)(Java Doc)
public synchronized void setTestOnBorrow(boolean testOnBorrow)(Code)(Java Doc)
public synchronized void setTestOnReturn(boolean testOnReturn)(Code)(Java Doc)
public synchronized void setTestWhileIdle(boolean testWhileIdle)(Code)(Java Doc)
public synchronized void setTimeBetweenEvictionRunsMillis(long timeBetweenEvictionRunsMillis)(Code)(Java Doc)
public synchronized void setWhenExhaustedAction(byte whenExhaustedAction)(Code)(Java Doc)
protected synchronized void startEvictor(long delay)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.