com.metamatrix.admin.api.objects
Interface ConnectionPool
- All Superinterfaces:
- AdminObject
- All Known Implementing Classes:
- MMConnectionPool
public interface ConnectionPool
- extends AdminObject
This object holds the statisics for a ConnectionPool that is being utilized by a Connector.
As per how many available connections
processed etc.
An identifier for QueueWorkerPool, is nothing but the modules it self, like "DQP",
"QueryService" or Connector Binding names etc.
- Since:
- 4.3
getTotalConnections
int getTotalConnections()
- Returns:
- Returns total number of current connections in the Connection Pool
- Since:
- 6.1
getConnectionsWaiting
int getConnectionsWaiting()
- Returns:
- Returns the number of connections waiting for use in the connection pool.
- Since:
- 6.1
getConnectionsInuse
int getConnectionsInuse()
- Returns:
- Returns the number of Connections currently in use by clients.
- Since:
- 6.1
getConnectionsCreated
long getConnectionsCreated()
- Returns:
- Returns the number of Connections created since the Connection Pool was created.
- Since:
- 6.1
getConnectionsDestroyed
long getConnectionsDestroyed()
- Returns:
- The number of Connections destroyed since the Connection Pool was created.
Copyright © 2009. All Rights Reserved.