Oracle Application Server TopLink API Reference
10g (9.0.4)

B10491-01

oracle.toplink.threetier
Class ReadConnectionPool

java.lang.Object
  |
  +--oracle.toplink.threetier.ConnectionPool
        |
        +--oracle.toplink.threetier.ReadConnectionPool

public class ReadConnectionPool
extends ConnectionPool

Purpose:The read connection pool is used for read access through the server session. Any of the connection pools can be used for the read pool however this is the default. This pool allows for concurrent reads against the same JDBC connection and requires that the JDBC connection support concurrent read access.


Constructor Summary
ReadConnectionPool()
          PUBLIC: Build a new read connection pool.
ReadConnectionPool(java.lang.String name, DatabaseLogin login, int minNumberOfConnections, int maxNumberOfConnections, oracle.toplink.threetier.ServerSession owner)
          PUBLIC: Build a new read connection pool.

 

Methods inherited from class oracle.toplink.threetier.ConnectionPool
getLogin, getMaxNumberOfConnections, getMinNumberOfConnections, getName, setLogin, setMaxNumberOfConnections, setMinNumberOfConnections, setName

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait

 

Constructor Detail

ReadConnectionPool

public ReadConnectionPool()
PUBLIC: Build a new read connection pool.

ReadConnectionPool

public ReadConnectionPool(java.lang.String name,
DatabaseLogin login,
                          int minNumberOfConnections,
                          int maxNumberOfConnections,
                          oracle.toplink.threetier.ServerSession owner)
PUBLIC: Build a new read connection pool.

Copyright © 2003 Oracle Corporation. All Rights Reserved.