Class SimpleConnectionPool<TConnection extends Connection>
java.lang.Object
oracle.stellent.ridc.protocol.impl.SimpleConnectionPool<TConnection>
- All Implemented Interfaces:
ConnectionPool<TConnection>
public class SimpleConnectionPool<TConnection extends Connection>
extends Object
implements ConnectionPool<TConnection>
Creates a new connection for every thread.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionObtain a connection from the pool for the current threadvoid
initialize
(IdcClientConfig clientConfig, ConnectionManager<TConnection, IdcClientConfig> connectionManager) Initialize the threading modelvoid
releaseConnection
(TConnection connection) Release the connection for this thread
-
Constructor Details
-
SimpleConnectionPool
public SimpleConnectionPool()
-
-
Method Details
-
initialize
public void initialize(IdcClientConfig clientConfig, ConnectionManager<TConnection, IdcClientConfig> connectionManager) throws ProtocolExceptionInitialize the threading model- Specified by:
initialize
in interfaceConnectionPool<TConnection extends Connection>
- Parameters:
clientConfig
- the client configurationconnectionManager
- the connection manager- Throws:
ProtocolException
-
acquireConnection
Description copied from interface:ConnectionPool
Obtain a connection from the pool for the current thread- Specified by:
acquireConnection
in interfaceConnectionPool<TConnection extends Connection>
- Returns:
- a new connection for the current thread
- Throws:
ProtocolException
-
releaseConnection
Release the connection for this thread- Specified by:
releaseConnection
in interfaceConnectionPool<TConnection extends Connection>
- Parameters:
connection
- the connection
-