|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ResourcePoolException in com.metamatrix.common.config |
---|
Methods in com.metamatrix.common.config that throw ResourcePoolException | |
---|---|
static ResourceDescriptor |
JDBCConnectionPoolHelper.createDescriptor(ConfigurationID configID,
java.lang.String poolName,
java.util.Properties properties)
|
static java.sql.Connection |
JDBCConnectionPoolHelper.getConnection(java.util.Properties properties,
java.lang.String userName)
Returns a connection based on the ResourcePool.RESOURCE_POOL property. |
static java.sql.Connection |
JDBCConnectionPoolHelper.getConnection(java.lang.String poolName,
java.lang.String userName)
|
Uses of ResourcePoolException in com.metamatrix.common.pooling.api |
---|
Methods in com.metamatrix.common.pooling.api that throw ResourcePoolException | |
---|---|
void |
ResourcePool.checkIn(ResourceContainer resourceContainer,
java.lang.String userName)
Called by the resource container to checkin itself to the pool. |
boolean |
ResourceContainer.checkin(Resource resource,
java.lang.String userName)
Called to checkin the |
Resource |
ResourceContainer.checkOut(java.lang.String userName)
Returns the resource object request for the userName |
Resource |
ResourcePool.checkOut(java.lang.String userName)
Returns a resource from the pool. |
void |
ResourceAdapter.closePhyicalResourceObject(Resource resource)
Called to have the adpater have the resource object close itself. |
void |
Resource.closeResource()
This method should be invoked by user to indicate the use of the resource is not longer needed. |
java.lang.Object |
ResourceAdapter.createPhysicalResourceObject(ResourceDescriptor descriptor)
Creates a specific resource based on the descriptor. |
Resource |
ResourceAdapter.createResource(java.lang.Object physicalResource)
Creates the Resource specific wrapper that will contain
the physicalResource. |
java.util.Collection |
ResourcePoolMgr.getAllResourceDescriptorIDs()
Call to get id's for all the current resource pools. |
java.util.Collection |
ResourcePoolMgr.getAllResourceDescriptors()
Call to get all the resource descriptors for the current pools. |
static Resource |
ResourceHelper.getResource(java.util.Properties properties,
java.lang.String userName)
Returns a Resource from a resource pool based on the
specified ResourcePool.RESOURCE_POOL property. |
Resource |
ResourcePoolMgr.getResource(ResourceDescriptor descriptor,
java.lang.String userName)
Call to get a resource from the pool defined by descriptor. |
static Resource |
ResourceHelper.getResource(java.lang.String poolName,
java.lang.String userName)
Returns a Resource from the specified ResourcePool.RESOURCE_POOL based on the
specified poolName . |
ResourceDescriptor |
ResourcePoolMgr.getResourceDescriptor(ResourceDescriptorID descriptorID)
Call to get the resource descriptor for the specified id |
static Resource |
ResourceHelper.getResourceFromPool(ResourceDescriptor descriptor,
java.lang.String userName)
|
java.util.Collection |
ResourcePoolMgr.getResourcePoolStatistics()
Returns all the ResourcePoolStatistics currently
active. |
ResourcePoolStatistics |
ResourcePoolMgr.getResourcePoolStatistics(ResourceDescriptorID descriptorID)
Returns the statistics for a specific resource descriptor id. |
java.util.Collection |
ResourcePoolMgr.getResourcesStatisticsForPool(ResourceDescriptorID descriptorID)
Returns all the ResourceStatistics for the pool. |
void |
ResourcePool.init(ResourceDescriptor descriptor)
Call to initialize the pool based on the descriptor. |
void |
ResourceContainer.init(ResourcePool resourcePool,
java.lang.Object physicalResourceObject,
int maxConcurrentUsers)
This method is invoked by the pool to set a reference of itself on the resource |
void |
Resource.init(java.lang.String checkedOutBy)
Called by the adapter for the resource to initialize itself and validate it should be valid resource for use. |
boolean |
ResourceContainer.isAlive()
Return true if the physical resource
is alive. |
boolean |
Resource.isResourceAlive()
isResourceAlive is called to determine if the resource is operating normally. |
void |
ResourcePoolMgr.shutDown()
Call to shutdown all resource pools and all the resources within those pools. |
void |
ResourceContainer.shutDown()
Called to shutdown the container and cleanup resource references. |
void |
ResourcePoolMgr.shutDown(ResourceDescriptorID descriptorID)
Call to shutdown all resources in the specific pool identified by the descriptor ID. |
void |
ResourcePool.update(java.util.Properties properties)
Call to update the pool management parameters based on the resource descriptor. |
void |
ResourcePoolMgr.updateResourcePool(ResourceDescriptorID resourceDescriptorID,
java.util.Properties properties)
Call to update the pool management parameters based on the resource descriptor. |
Uses of ResourcePoolException in com.metamatrix.common.pooling.api.exception |
---|
Subclasses of ResourcePoolException in com.metamatrix.common.pooling.api.exception | |
---|---|
class |
ResourceWaitTimeOutException
|
Uses of ResourcePoolException in com.metamatrix.common.pooling.impl |
---|
Methods in com.metamatrix.common.pooling.impl that throw ResourcePoolException | |
---|---|
void |
BasicResourcePool.checkIn(ResourceContainer resourceContainer,
java.lang.String userName)
|
boolean |
BasicResourceContainer.checkin(Resource resource,
java.lang.String userName)
Returns the resource object request for the userName |
Resource |
BasicResourceContainer.checkOut(java.lang.String userName)
Returns the resource object request for the userName |
Resource |
BasicResourcePool.checkOut(java.lang.String userName)
|
void |
BaseResource.closeResource()
This method should be invoked by the extended class to notify the pool the use of the resource is not longer needed. |
java.util.Collection |
ResourcePoolMgrImpl.getAllResourceDescriptorIDs()
Call to get id's for all the current resource pools. |
java.util.Collection |
ResourcePoolMgrImpl.getAllResourceDescriptors()
|
protected ResourcePoolMgrImpl |
ResourcePoolMgrImpl.getInstance()
|
Resource |
ResourcePoolMgrImpl.getResource(ResourceDescriptor descriptor,
java.lang.String userName)
Call to get a resource from the pool defined by descriptor. |
ResourceDescriptor |
ResourcePoolMgrImpl.getResourceDescriptor(ResourceDescriptorID descriptorID)
|
ResourcePool |
ResourcePoolMgrImpl.getResourcePool(ResourceDescriptor descriptor)
Do Not call this method to update the resource pool This method was made available for testing |
ResourcePool |
ResourcePoolMgrImpl.getResourcePool(ResourceDescriptorID descriptorID)
Do Not call this method to update the resource pool This method was made available for testing |
java.util.Collection |
ResourcePoolMgrImpl.getResourcePools()
Do Not call this method to update the resource pool This method was made available for testing |
java.util.Collection |
ResourcePoolMgrImpl.getResourcePoolStatistics()
|
ResourcePoolStatistics |
ResourcePoolMgrImpl.getResourcePoolStatistics(ResourceDescriptorID descriptorID)
|
java.util.Collection |
ResourcePoolMgrImpl.getResourcesStatisticsForPool(ResourceDescriptorID descriptorID)
|
protected void |
ResourcePoolMgrImpl.init()
|
void |
BaseResource.init(ResourceContainer resourceContainer,
java.lang.String checkedOutBy)
This method is invoked by the pool to set a reference of itself on the resource |
void |
BasicResourcePool.init(ResourceDescriptor descriptor)
|
void |
BasicResourceContainer.init(ResourcePool resourcePool,
java.lang.Object physicalResourceObject,
int maxConcurrentUsers)
|
void |
BaseResource.init(java.lang.String checkedOutBy)
|
protected void |
BasicResourcePool.initResources()
|
boolean |
BasicResourceContainer.isAlive()
|
protected abstract void |
BaseResource.performInit()
Perform initialization allows for additional initialization by the implementor before the resource object is made avaialable for use. |
protected java.util.Collection |
ResourcePoolMgrImpl.rd1$()
|
protected java.util.Collection |
ResourcePoolMgrImpl.rd2$()
|
protected ResourceDescriptor |
ResourcePoolMgrImpl.rd3$(ResourceDescriptorID descriptorID)
|
protected java.util.Collection |
ResourcePoolMgrImpl.rps1$()
|
protected ResourcePoolStatistics |
ResourcePoolMgrImpl.rps2$(ResourceDescriptorID descriptorID)
|
protected java.util.Collection |
ResourcePoolMgrImpl.rsp1$(ResourceDescriptorID descriptorID)
|
protected void |
ResourcePoolMgrImpl.sd1$()
|
protected void |
ResourcePoolMgrImpl.sd2$(ResourceDescriptorID descriptorID)
|
void |
ResourcePoolMgrImpl.shutDown()
|
void |
BasicResourceContainer.shutDown()
This method is invoked by the pool when the resource will have all its resources cleaned up. |
void |
ResourcePoolMgrImpl.shutDown(ResourceDescriptorID descriptorID)
|
void |
BasicResourcePool.update(java.util.Properties properties)
|
void |
ResourcePoolMgrImpl.updateResourcePool(ResourceDescriptorID descriptorID,
java.util.Properties props)
|
Uses of ResourcePoolException in com.metamatrix.common.pooling.jdbc |
---|
Methods in com.metamatrix.common.pooling.jdbc that throw ResourcePoolException | |
---|---|
void |
JDBCConnectionResourceAdapter.closePhyicalResourceObject(Resource resource)
|
java.lang.Object |
JDBCConnectionResourceAdapter.createPhysicalResourceObject(ResourceDescriptor descriptor)
|
Resource |
JDBCConnectionResourceAdapter.createResource(java.lang.Object physicalResource)
|
protected void |
JDBCConnectionResource.performInit()
|
Uses of ResourcePoolException in com.metamatrix.common.pooling.util |
---|
Methods in com.metamatrix.common.pooling.util that throw ResourcePoolException | |
---|---|
static java.lang.Object |
PoolingUtil.create(java.lang.String className,
java.util.Collection ctorObjs)
Helper method to create an instance of the class using the appropriate constructor based on the ctorObjs passed. |
Uses of ResourcePoolException in com.metamatrix.platform.admin.api |
---|
Methods in com.metamatrix.platform.admin.api that throw ResourcePoolException | |
---|---|
PropertiedObject |
RuntimeStateAdminAPI.getPoolProps(ResourceDescriptorID descriptorID)
Return a PropertiedObject that contains the pool properties and their values for a particular pool. |
java.util.Collection |
RuntimeStateAdminAPI.getResourceDescriptors()
Returns a Collection of ResourceDescriptor for all resource
pools defined to the system. |
java.util.Collection |
RuntimeStateAdminAPI.getResourcePoolStatistics()
Returns a Collection of ResourcePoolStats for all
resource pools known to the system. |
java.util.Collection |
RuntimeStateAdminAPI.getResourcePoolStatistics(ResourceDescriptorID descriptorID)
Returns a Collection of ResourcePoolStats for all
resource pools for the given DescriptorID. |
void |
RuntimeStateAdminAPI.updateResourcePool(ResourceDescriptorID resourcePoolID,
java.util.Properties properties)
Execute an update to immediately apply the changes to the ResourcePool identified by the
ID . |
Uses of ResourcePoolException in com.metamatrix.platform.admin.apiimpl |
---|
Methods in com.metamatrix.platform.admin.apiimpl that throw ResourcePoolException | |
---|---|
void |
ConfigurationAdminAPIImpl.executeUpdateTransaction(ResourceDescriptorID resourcePoolID,
java.util.Properties properties)
Execute an update to immediately apply the changes to the ResourcePool identified by the
ID . |
PropertiedObject |
RuntimeStateAdminAPIImpl.getPoolProps(ResourceDescriptorID descriptorID)
Return a PropertiedObject that contains the pool properties and their values for a particular pool. |
java.util.Collection |
RuntimeStateAdminAPIImpl.getResourceDescriptors()
Returns a Collection of ResourceDescriptor for all resource
pools defined to the system. |
java.util.Collection |
RuntimeStateAdminAPIHelper.getResourceDescriptors()
Returns a Collection of ResourceDescriptor for all resource
pools defined to the system. |
java.util.Collection |
RuntimeStateAdminAPIImpl.getResourcePoolStatistics()
Returns a Collection of ResourcePoolStats
for all resource pools known to the system. |
java.util.Collection |
RuntimeStateAdminAPIHelper.getResourcePoolStatistics()
Returns a Collection of ResourcePoolStats for all
resource pools known to the system. |
java.util.Collection |
RuntimeStateAdminAPIImpl.getResourcePoolStatistics(ResourceDescriptorID descriptorID)
Returns a Collection of ResourcePoolStats
for all resource pools for the given DescriptorID. |
void |
RuntimeStateAdminAPIImpl.updateResourcePool(ResourceDescriptorID resourcePoolID,
java.util.Properties properties)
Execute an update to immediately apply the changes to the ResourcePool identified by the
ID . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |