Package com.tietoenator.trip.jxp.pool
Class TdbWebConnectionPool
- java.lang.Object
-
- com.tietoenator.trip.jxp.pool.TdbConnectionPool
-
- com.tietoenator.trip.jxp.pool.TdbWebConnectionPool
-
public class TdbWebConnectionPool extends TdbConnectionPool
Connection pool for web sessions
-
-
Field Summary
-
Fields inherited from class com.tietoenator.trip.jxp.pool.TdbConnectionPool
INFINITE_TIMEOUT
-
-
Constructor Summary
Constructors Constructor Description TdbWebConnectionPool(java.lang.String server, int port, java.lang.String inifile, int timeout, java.lang.String username, java.lang.String password, TdbLanguage lang, int stepping)
Constructor -- setup the session pool with full web parametersTdbWebConnectionPool(java.lang.String server, int port, java.lang.String username, java.lang.String password, TdbLanguage lang, int stepping)
Constructor -- setup the session pool with minimal web parameters
-
Method Summary
-
Methods inherited from class com.tietoenator.trip.jxp.pool.TdbConnectionPool
acquire, acquire, close, getActivityLog, getIdleTimeout, getIsolateSessions, getLimit, getMinIdle, getPoolInitializer, getPurgeInterval, getRestoreDelay, getRestoreRetries, getSize, isClosed, reserve, setActivityLog, setIdleTimeout, setIsolateSessions, setLimit, setMinIdle, setPoolInitializer, setPurgeInterval, setRestoreDelay, setRestoreRetries
-
-
-
-
Constructor Detail
-
TdbWebConnectionPool
public TdbWebConnectionPool(java.lang.String server, int port, java.lang.String username, java.lang.String password, TdbLanguage lang, int stepping) throws TdbException
Constructor -- setup the session pool with minimal web parameters- Parameters:
server
- The name or IP address of the web serverport
- The port number on which the web server is runningusername
- The name of the user that every session in this pool will adoptpassword
- The password of the user that every session in this pool will adoptlang
- CCL dialect to use within the poolstepping
- The stepping of the pool, i.e. how many sessions will be created at a time- Throws:
TdbException
-
TdbWebConnectionPool
public TdbWebConnectionPool(java.lang.String server, int port, java.lang.String inifile, int timeout, java.lang.String username, java.lang.String password, TdbLanguage lang, int stepping) throws TdbException
Constructor -- setup the session pool with full web parameters- Parameters:
server
- The name or IP address of the web serverport
- The port number on which the web is runninginifile
- The name of a host initialization file run for each sessiontimeout
- The timeout (in ms) for each sessionusername
- The name of the user that every session in this pool will adoptpassword
- The password of the user that every session in this pool will adoptlang
- CCL dialect to use within the poolstepping
- The stepping of the pool, i.e. how many sessions will be created at a time- Throws:
TdbException
-
-