Package com.mchange.v1.db.sql
Interface ConnectionBundlePool
-
- All Superinterfaces:
ClosableResource
- All Known Implementing Classes:
ConnectionBundlePoolBean,ConnectionBundlePoolImpl
public interface ConnectionBundlePool extends ClosableResource
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcheckinBundle(ConnectionBundle bndl)ConnectionBundlecheckoutBundle()voidclose()forces the release of any resources that might be associated with this object.
-
-
-
Method Detail
-
checkoutBundle
ConnectionBundle checkoutBundle() throws java.sql.SQLException, java.lang.InterruptedException, BrokenObjectException
- Throws:
java.sql.SQLExceptionjava.lang.InterruptedExceptionBrokenObjectException
-
checkinBundle
void checkinBundle(ConnectionBundle bndl) throws java.sql.SQLException, BrokenObjectException
- Throws:
java.sql.SQLExceptionBrokenObjectException
-
close
void close() throws java.sql.SQLExceptionDescription copied from interface:ClosableResourceforces the release of any resources that might be associated with this object.- Specified by:
closein interfaceClosableResource- Throws:
java.sql.SQLException
-
-