Java Doc for KeyedObjectPool.java in  » Database-JDBC-Connection-Pool » Apache-commons-pool-1.3 » org » apache » commons » pool » 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 » Database JDBC Connection Pool » Apache commons pool 1.3 » org.apache.commons.pool 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.commons.pool.KeyedObjectPool

All known Subclasses:   org.apache.commons.pool.BaseKeyedObjectPool,  org.apache.commons.pool.impl.StackKeyedObjectPool,  org.apache.commons.pool.impl.GenericKeyedObjectPool,
KeyedObjectPool
public interface KeyedObjectPool (Code)
A "keyed" pooling interface.

A keyed pool pools instances of multiple types. Each type may be accessed using an arbitrary key.

Example of use:
 Object obj = null;
 Object key = "Key";
 try {
 obj = pool.borrowObject(key);
 //...use the object...
 } catch(Exception e) {
 //...handle any exceptions...
 } finally {
 // make sure the object is returned to the pool
 if(null != obj) {
 pool.returnObject(key,obj);
 }
 }

KeyedObjectPool implementations may choose to store at most one instance per key value, or may choose to maintain a pool of instances for each key (essentially creating a java.util.Map Map of ObjectPool pools ).


See Also:   KeyedPoolableObjectFactory
See Also:   KeyedObjectPoolFactory
See Also:   ObjectPool
author:
   Rodney Waldhoff
version:
   $Revision: 155430 $ $Date: 2005-02-26 08:13:28 -0500 (Sat, 26 Feb 2005) $




Method Summary
 voidaddObject(Object key)
     Create an object using my KeyedObjectPool.setFactory factory or other implementation dependent mechanism, and place it into the pool.
 ObjectborrowObject(Object key)
     Obtain an instance from my pool for the specified key.
 voidclear()
     Clears my pool, removing all pooled instances (optional operation).
 voidclear(Object key)
     Clears the specified pool, removing all pooled instances corresponding to the given key (optional operation).
 voidclose()
     Close this pool, and free any resources associated with it.
 intgetNumActive(Object key)
     Returns the number of instances currently borrowed from but not yet returned to my pool corresponding to the given key (optional operation).
 intgetNumActive()
     Returns the total number of instances current borrowed from my pool but not yet returned (optional operation).
 intgetNumIdle(Object key)
     Returns the number of instances corresponding to the given key currently idle in my pool (optional operation).
 intgetNumIdle()
     Returns the total number of instances currently idle in my pool (optional operation).
 voidinvalidateObject(Object key, Object obj)
     Invalidates an object from the pool By contract, obj MUST have been obtained using KeyedObjectPool.borrowObject borrowObject or a related method as defined in an implementation or sub-interface using a key that is equivalent to the one used to borrow the Object in the first place.
 voidreturnObject(Object key, Object obj)
     Return an instance to my pool.
 voidsetFactory(KeyedPoolableObjectFactory factory)
     Sets the KeyedPoolableObjectFactory factory I use to create new instances (optional operation).



Method Detail
addObject
void addObject(Object key) throws Exception(Code)
Create an object using my KeyedObjectPool.setFactory factory or other implementation dependent mechanism, and place it into the pool. addObject() is useful for "pre-loading" a pool with idle objects. (Optional operation).



borrowObject
Object borrowObject(Object key) throws Exception(Code)
Obtain an instance from my pool for the specified key. By contract, clients MUST return the borrowed object using KeyedObjectPool.returnObject(java.lang.Object,java.lang.Object) returnObject , or a related method as defined in an implementation or sub-interface, using a key that is equivalent to the one used to borrow the instance in the first place.
Parameters:
  key - the key used to obtain the object an instance from my pool.



clear
void clear() throws Exception, UnsupportedOperationException(Code)
Clears my pool, removing all pooled instances (optional operation). Throws UnsupportedOperationException if the pool cannot be cleared.
throws:
  UnsupportedOperationException - when this implementation doesn't support the operation



clear
void clear(Object key) throws Exception, UnsupportedOperationException(Code)
Clears the specified pool, removing all pooled instances corresponding to the given key (optional operation). Throws UnsupportedOperationException if the pool cannot be cleared.
Parameters:
  key - the key to clear
throws:
  UnsupportedOperationException - when this implementation doesn't support the operation



close
void close() throws Exception(Code)
Close this pool, and free any resources associated with it.



getNumActive
int getNumActive(Object key) throws UnsupportedOperationException(Code)
Returns the number of instances currently borrowed from but not yet returned to my pool corresponding to the given key (optional operation). Throws UnsupportedOperationException if this information is not available.
Parameters:
  key - the key the number of instances corresponding to the given key currently borrowed in my pool
throws:
  UnsupportedOperationException - when this implementation doesn't support the operation



getNumActive
int getNumActive() throws UnsupportedOperationException(Code)
Returns the total number of instances current borrowed from my pool but not yet returned (optional operation). Throws UnsupportedOperationException if this information is not available. the total number of instances currently borrowed from my pool
throws:
  UnsupportedOperationException - when this implementation doesn't support the operation



getNumIdle
int getNumIdle(Object key) throws UnsupportedOperationException(Code)
Returns the number of instances corresponding to the given key currently idle in my pool (optional operation). Throws UnsupportedOperationException if this information is not available.
Parameters:
  key - the key the number of instances corresponding to the given key currently idle in my pool
throws:
  UnsupportedOperationException - when this implementation doesn't support the operation



getNumIdle
int getNumIdle() throws UnsupportedOperationException(Code)
Returns the total number of instances currently idle in my pool (optional operation). Throws UnsupportedOperationException if this information is not available. the total number of instances currently idle in my pool
throws:
  UnsupportedOperationException - when this implementation doesn't support the operation



invalidateObject
void invalidateObject(Object key, Object obj) throws Exception(Code)
Invalidates an object from the pool By contract, obj MUST have been obtained using KeyedObjectPool.borrowObject borrowObject or a related method as defined in an implementation or sub-interface using a key that is equivalent to the one used to borrow the Object in the first place.

This method should be used when an object that has been borrowed is determined (due to an exception or other problem) to be invalid. If the connection should be validated before or after borrowing, then the PoolableObjectFactory.validateObject method should be used instead.
Parameters:
  obj - a KeyedObjectPool.borrowObject borrowed instance to be returned.




returnObject
void returnObject(Object key, Object obj) throws Exception(Code)
Return an instance to my pool. By contract, obj MUST have been obtained using KeyedObjectPool.borrowObject(java.lang.Object) borrowObject or a related method as defined in an implementation or sub-interface using a key that is equivalent to the one used to borrow the Object in the first place.
Parameters:
  key - the key used to obtain the object
Parameters:
  obj - a KeyedObjectPool.borrowObject(java.lang.Object) borrowed instance to be returned.



setFactory
void setFactory(KeyedPoolableObjectFactory factory) throws IllegalStateException, UnsupportedOperationException(Code)
Sets the KeyedPoolableObjectFactory factory I use to create new instances (optional operation).
Parameters:
  factory - the KeyedPoolableObjectFactory I use to create new instances.
throws:
  IllegalStateException - when the factory cannot be set at this time
throws:
  UnsupportedOperationException - when this implementation doesn't support the operation



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