/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/datastructure/strategy/ |
H A D | ResourceSelectionStrategy.java | 41 package com.sun.enterprise.resource.pool.datastructure.strategy;
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/ |
H A D | AbstractPoolManager.java | 41 package com.sun.enterprise.resource.pool;
|
H A D | ConnectionLeakListener.java | 41 package com.sun.enterprise.resource.pool;
|
H A D | PoolLifeCycleRegistry.java | 41 package com.sun.enterprise.resource.pool; 54 * connection pool creation or destroy. The registry allows multiple listeners 55 * (ex: pool monitoring or self management) 56 * to listen to the pool's lifecyle. Maintains a list of listeners for this pool 79 * Add a listener to the list of pool life cycle listeners maintained by 90 //If the pool is already created, set this registry object to the pool. 97 * Clear the list of pool lifecycle listeners maintained by the registry. 98 * This happens when a pool i [all...] |
H A D | PoolProperties.java | 41 package com.sun.enterprise.resource.pool; 44 * Pool supplementary classes can use this to retrieve runtime pool attributes. 51 * gets the steady pool size of the pool 52 * @return steady pool size 57 * gets the max pool size of the pool 58 * @return max pool size 63 * gets the resize quantity of the pool
|
H A D | PoolStatus.java | 41 package com.sun.enterprise.resource.pool; 47 * get the status of the pool specifically the number of connections free or 56 //Number of free connections in the pool 59 //Number of connections in the pool that are being used currently.
|
H A D | ResourceGateway.java | 41 package com.sun.enterprise.resource.pool; 95 _logger.log(Level.WARNING, "pool.resource.gateway.init.failure", className); 96 _logger.log(Level.WARNING, "pool.resource.gateway.init.failure", e);
|
H A D | ResourceHandler.java | 41 package com.sun.enterprise.resource.pool; 72 * create a new resource and add it to pool (using default resource-allocator)
|
H A D | ResourcePoolFactoryImpl.java | 41 package com.sun.enterprise.resource.pool; 56 * Factory to create appropriate connection pool. 79 ResourcePool pool = null; 84 pool = new AssocWithThreadResourcePool( poolInfo, env ); 86 pool = new ConnectionPool( poolInfo, env ); 90 _logger.fine("Created a pool of type : " + pt); 92 return pool;
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/monitor/ |
H A D | ConnectionPoolAppProbeProvider.java | 41 package com.sun.enterprise.resource.pool.monitor;
|
H A D | ConnectionPoolProbeProviderUtil.java | 41 package com.sun.enterprise.resource.pool.monitor; 73 * jca connection pools. Each jca connection pool will qualify a 74 * probe event with its pool name. 85 * jdbc connection pools. Each jdbc connection pool will qualify a 86 * probe event with its pool name. 97 * Get probe provider for connector connection pool related events 105 * Get probe provider for jdbc connection pool related events
|
H A D | ConnectorConnPoolAppProbeProvider.java | 41 package com.sun.enterprise.resource.pool.monitor; 48 * Probe provider interface for Connector connection pool related events 50 * connector connection pool monitoring grouped by applications. 54 @ProbeProvider(moduleProviderName="glassfish", moduleName="connector-pool", probeProviderName="applications") 57 * Emits probe event/notification that the given connector connection pool 70 * Emits probe event/notification that the given connector connection pool 84 * for the given jca connection pool <code>poolName</code> by the 97 * jca connection pool <code>poolName</code> by the
|
H A D | JdbcConnPoolAppProbeProvider.java | 41 package com.sun.enterprise.resource.pool.monitor; 48 * Probe provider interface for JDBC connection pool related events to provide 49 * information related to the various objects on jdbc pool monitoring grouped 54 @ProbeProvider(moduleProviderName="glassfish", moduleName="jdbc-pool", probeProviderName="applications") 58 * Emits probe event/notification that the given jdbc connection pool 71 * Emits probe event/notification that the given jdbc connection pool 85 * for the given jdbc connection pool <code>poolName</code> by 98 * jdbc connection pool <code>poolName</code> by the
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/waitqueue/ |
H A D | PoolWaitQueue.java | 41 package com.sun.enterprise.resource.pool.waitqueue; 46 * Represents the pool wait queue<br> 96 * Useful in case of rolling over from one pool to another 97 * eg: transparent-dynamic-pool-reconfiguration.
|
H A D | PoolWaitQueueFactory.java | 41 package com.sun.enterprise.resource.pool.waitqueue; 80 _logger.log(Level.WARNING, "pool.waitqueue.init.failure", className); 81 _logger.log(Level.WARNING, "pool.waitqueue.init.failure.exception", e);
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/pool/ |
H A D | ObjectFactory.java | 42 * <BR> <I>$Source: /cvs/glassfish/appserv-core/src/java/com/sun/ejb/containers/util/pool/ObjectFactory.java,v $</I> 47 package com.sun.ejb.containers.util.pool;
|
H A D | Pool.java | 42 * <BR> <I>$Source: /cvs/glassfish/appserv-core/src/java/com/sun/ejb/containers/util/pool/Pool.java,v $</I> 47 package com.sun.ejb.containers.util.pool; 51 * pooled objects. The basic assumption is that all objects in the pool are 53 * object from the pool, b) returning an object back to the pool 56 * There are six overloaded methods for getting objects from a pool. 74 * Get an object from the pool within the specified time. 85 * Return an object back to the pool. An object that is obtained through 86 * getObject() must always be returned back to the pool using either 95 * the pool usin [all...] |
H A D | PoolException.java | 42 * <BR> <I>$Source: /cvs/glassfish/appserv-core/src/java/com/sun/ejb/containers/util/pool/PoolException.java,v $</I> 47 package com.sun.ejb.containers.util.pool;
|
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/ |
H A D | CoordinatorLogPool.java | 50 * This pool allows the re-use of these objects which are very expensive 53 * The pool is used by replacing calls to 'new CoordinatorLog()' in the 56 * from the pool. If the pool is empty it instantiates a new 60 * to return a CoordinatorLog object back to the pool. At this time a 61 * check is made to ensure that the internal pool size doesn't exceed a 63 * back into the pool. 65 * The pool was added to improve performance of transaction logging 78 private Stack pool; field in class:CoordinatorLogPool 90 pool [all...] |
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/customvalidators/ |
H A D | ConnectionPoolValidator.java | 56 * - Max pool size to be always higher than steady pool size 71 public boolean isValid(final ResourcePool pool, argument 75 if(pool instanceof JdbcConnectionPool) { 76 JdbcConnectionPool jdbcPool = (JdbcConnectionPool) pool; 87 //max pool size fault 90 } else if(pool instanceof ConnectorConnectionPool) { 91 ConnectorConnectionPool connPool = (ConnectorConnectionPool) pool; 102 //max pool size fault 109 if(pool instanceo [all...] |
/glassfish-3.1.2/admin/config-api/src/test/java/com/sun/enterprise/configapi/tests/validation/ |
H A D | JdbcConnectionPoolValidationTest.java | 68 private JdbcConnectionPool pool = null; field in class:JdbcConnectionPoolValidationTest 81 pool = super.getHabitat().getComponent(JdbcConnectionPool.class, NAME); 86 pool = null; 100 }, pool); 111 pool.setSteadyPoolSize("true"); //this only takes a boolean 112 pool.setSteadyPoolSize("false"); //this only takes a boolean 113 pool.setSteadyPoolSize("TRUE"); //this only takes a boolean 114 pool.setSteadyPoolSize("FALSE"); //this only takes a boolean 115 pool.setSteadyPoolSize("FALSE"); //this only takes a boolean
|
/glassfish-3.1.2/javaee-api/javax.javaee/compact/src/main/java/ |
H A D | DIY.java | 172 Pool pool = new Pool(); 212 writeClass(pool, cs, writer); 217 writeClass(pool, cs, writer); 252 void writeClass(final Pool pool, final ClassSymbol cs, final ClassWriter writer) { argument 254 pool.reset(); 255 cs.pool = pool; 261 writeClass(pool, nestedClass, writer);
|
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/ |
H A D | CodeEnv.java | 50 /* The constant pool */ 75 final ConstantPool pool() { method in class:CodeEnv
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/resizer/ |
H A D | Resizer.java | 41 package com.sun.enterprise.resource.pool.resizer; 46 import com.sun.enterprise.resource.pool.PoolProperties; 49 import com.sun.enterprise.resource.pool.ResourceHandler; 50 import com.sun.enterprise.resource.pool.datastructure.DataStructure; 60 * Resizer to remove unusable connections, maintain steady-pool <br> 63 * i) equivalent to "pool-resize" quantity of resources are removed<br> 64 * ii) less than "pool-reize" quantity of resources are removed<br> 65 * remove more resources to match pool-resize quantity, atmost scale-down till steady-pool-size<br> 66 * iii) more than "pool 75 protected PoolProperties pool; field in class:Resizer [all...] |
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/datastructure/ |
H A D | DataStructureFactory.java | 41 package com.sun.enterprise.resource.pool.datastructure; 44 import com.sun.enterprise.resource.pool.ResourceHandler; 54 * Factory to create appropriate datastructure type for the pool<br> 94 _logger.log(Level.WARNING, "pool.datastructure.init.failure", className); 95 _logger.log(Level.WARNING, "pool.datastructure.init.failure.exception", e);
|