Interface ConnectionPool
- All Known Implementing Classes:
MariaDBConnectionPool
,MySQLConnectionPool
,SQLiteConnectionPool
public interface ConnectionPool
A connection pool that manages connections to a database.
-
Method Summary
Modifier and TypeMethodDescriptionReturns a connection from the connection pool.void
releaseConnection
(Connection connection) Releases a connection back to the connection pool.void
shutdown()
Shuts down the connection pool.
-
Method Details
-
getConnection
Returns a connection from the connection pool.- Returns:
- a connection from the connection pool
- Throws:
SQLException
- if an error occurs while getting a connection
-
releaseConnection
Releases a connection back to the connection pool.- Parameters:
connection
- the connection to release- Throws:
SQLException
- if an error occurs while releasing the connection
-
shutdown
Shuts down the connection pool.- Throws:
SQLException
- if an error occurs while shutting down the connection pool
-