Searched defs:connections (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/
H A DResourceHandler.java78 * gets the invalid connections from the given connections set
79 * @param connections that need to be validated
80 * @return invalid connections set
83 Set getInvalidConnections(Set connections) throws ResourceException; argument
H A DConnectionPool.java575 * associating physical connections.
768 * resources, create new connections and serve the request.<br>
787 // still few more connections (less than "resizeQuantity" and to reach the count of maxPoolSize)
795 //pool cannot create more connections as it is at max-pool-size.
1206 public Set getInvalidConnections(Set connections) throws ResourceException { argument
1207 return allocator.getInvalidConnections(connections);
1267 _logger.log(Level.FINE, "Emptying free connections in pool : " + poolInfo);
1320 * Reinitialize connections established in the connection pool and
1417 //In this case we need to kill extra connections in the pool
1516 * Switch on matching of connections i
[all...]
/glassfish-3.1.2/admin/jmx-remote/server/src/main/java/com/sun/enterprise/admin/jmx/remote/server/notification/
H A DServerNotificationManager.java68 private HashMap connections = null; field in class:ServerNotificationManager
81 connections = new HashMap();
107 (NotificationConnection) connections.get(id);
112 connections.remove(id);
160 synchronized (connections) {
168 synchronized (connections) {
169 connection = (NotificationConnection) connections.get(id);
172 connections.put(id, connection);
212 synchronized (connections) {
213 HashMap conns = (HashMap) connections
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/connection/
H A DConnectionManager.java67 * established database connections. This class lets you specify the following
68 * settings for JDBC connections:
74 * <LI>number of pooled connections (settable when running)
83 * <LI> minimum and maximum number of pooled connections, although not whether pooling is
93 * <P>If you use a connection manager to manage your database connections,
99 * <P>You can set up your connection manager to manage database connections in
106 * <LI>Maintain a pool of connections for a given user name and password,
107 * and return one of these connections when you request a connection using the
110 * the security information for the pool of connections is the same and is the
112 * <LI>Maintain a pool of connections fo
2089 expandPool(int connections) argument
[all...]

Completed in 36 milliseconds