Class ConnectionPoolManager

java.lang.Object
oracle.stellent.ridc.protocol.ConnectionPoolManager

@Concealed public class ConnectionPoolManager extends Object
Manages the available threading models
  • Constructor Details

    • ConnectionPoolManager

      public ConnectionPoolManager()
  • Method Details

    • registerConnectionPool

      public void registerConnectionPool(String name, Class<? extends ConnectionPool> threadingModel)
      Register a new connection pool
      Parameters:
      name - the model name
      threadingModel - the class implementing the ConnectionPool interface
    • isConnectionPoolRegistered

      public boolean isConnectionPoolRegistered(String name)
      Determine if the given threading model name is registered
      Parameters:
      name - the model name
      Returns:
      true if the name maps to a threading model
    • createConnectionPool

      public <TCon extends Connection> ConnectionPool<TCon> createConnectionPool(String name, IdcClientConfig config, ConnectionManager<TCon,IdcClientConfig> manager) throws ProtocolException
      Create a new connection pool
      Parameters:
      name -
      config -
      manager -
      Returns:
      Throws:
      ProtocolException