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 void
checkinBundle(ConnectionBundle bndl)
ConnectionBundle
checkoutBundle()
void
close()
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.SQLException
java.lang.InterruptedException
BrokenObjectException
-
checkinBundle
void checkinBundle(ConnectionBundle bndl) throws java.sql.SQLException, BrokenObjectException
- Throws:
java.sql.SQLException
BrokenObjectException
-
close
void close() throws java.sql.SQLException
Description copied from interface:ClosableResource
forces the release of any resources that might be associated with this object.- Specified by:
close
in interfaceClosableResource
- Throws:
java.sql.SQLException
-
-