Package oracle.stellent.ridc.protocol
Interface ConnectionPool<TConnection extends Connection>
- All Known Implementing Classes:
BlockingQueueConnectionPool
,SimpleConnectionPool
The interface of connection pool implementations that reuse connections
-
Method Summary
Modifier and TypeMethodDescriptionObtain a connection from the pool for the current threadvoid
initialize
(IdcClientConfig clientConfig, ConnectionManager<TConnection, IdcClientConfig> connectionManager) Let a pool implementation initialize itselfvoid
releaseConnection
(TConnection connection) Release the connection for the current thread
-
Method Details
-
initialize
void initialize(IdcClientConfig clientConfig, ConnectionManager<TConnection, IdcClientConfig> connectionManager) throws ProtocolExceptionLet a pool implementation initialize itself- Parameters:
clientConfig
- the client configurationconnectionManager
- the connection manager- Throws:
ProtocolException
-
acquireConnection
Obtain a connection from the pool for the current thread- Returns:
- a new connection for the current thread
- Throws:
ProtocolException
-
releaseConnection
Release the connection for the current thread- Parameters:
connection
- the connection
-