Uses of Interface
com.gargoylesoftware.base.resource.ManagedResource
-
Packages that use ManagedResource Package Description com.gargoylesoftware.base.objectstore Classes involving object stores.com.gargoylesoftware.base.resource com.gargoylesoftware.base.resource.jdbc An implementation of.ResourceFactory that manages JDBC connections -
-
Uses of ManagedResource in com.gargoylesoftware.base.objectstore
Methods in com.gargoylesoftware.base.objectstore with parameters of type ManagedResource Modifier and Type Method Description protected void
ObjectStore. releaseResource(ManagedResource object)
Release the specified resource -
Uses of ManagedResource in com.gargoylesoftware.base.resource
Methods in com.gargoylesoftware.base.resource that return ManagedResource Modifier and Type Method Description ManagedResource
ResourceFactory. getResource(ResourceManager resourceManager)
Allocate a resource for the specified storeprotected ManagedResource
PooledResourceFactory. getResourceImpl(ResourceManager resourceManager)
Get a resourceprotected abstract ManagedResource
ResourceFactory. getResourceImpl(ResourceManager resourceManager)
Subclasses will override this to perform the actual allocation of the resource.Methods in com.gargoylesoftware.base.resource with parameters of type ManagedResource Modifier and Type Method Description private void
ResourceFactory. deregisterResource(ResourceManager resourceManager, ManagedResource resource)
private void
ResourceFactory. registerResource(ResourceManager resourceManager, ManagedResource resource)
boolean
PooledResourceFactory. reinitializeResourceIfPossible(ManagedResource resource)
Reinitialize the resource to a known state.abstract boolean
ResourceFactory. reinitializeResourceIfPossible(ManagedResource resource)
Reinitialize the resource to a known state.void
ResourceFactory. releaseResource(ResourceManager resourceManager, ManagedResource resource)
Release the specified resource.void
ResourceManager. releaseResource(ManagedResource object)
Release the specified resourceprotected void
PooledResourceFactory. releaseResourceImpl(ResourceManager resourceManager, ManagedResource resource)
Release a resourceprotected abstract void
ResourceFactory. releaseResourceImpl(ResourceManager resourceManager, ManagedResource resource)
Subclasses will override this to perform the actual release of the resource. -
Uses of ManagedResource in com.gargoylesoftware.base.resource.jdbc
Classes in com.gargoylesoftware.base.resource.jdbc that implement ManagedResource Modifier and Type Class Description class
ConnectionWrapper
A wrapper for java.sql.Connection objects.Methods in com.gargoylesoftware.base.resource.jdbc that return ManagedResource Modifier and Type Method Description protected ManagedResource
JDBCResourceFactory. getResourceImpl(ResourceManager resourceManager)
Allocate a resource for the specified storeMethods in com.gargoylesoftware.base.resource.jdbc with parameters of type ManagedResource Modifier and Type Method Description boolean
JDBCResourceFactory. reinitializeResourceIfPossible(ManagedResource resource)
Reinitialize the resource to a known state.protected void
JDBCResourceFactory. releaseResourceImpl(ResourceManager resourceManager, ManagedResource resource)
Release the specified resource.
-