Package com.tietoenator.trip.jxp.pool
Class TdbWebConnectionPool
java.lang.Object
com.tietoenator.trip.jxp.pool.TdbConnectionPool
com.tietoenator.trip.jxp.pool.TdbWebConnectionPool
Connection pool for web sessions
-
Field Summary
Fields inherited from class com.tietoenator.trip.jxp.pool.TdbConnectionPool
INFINITE_TIMEOUT
-
Constructor Summary
ConstructorsConstructorDescriptionTdbWebConnectionPool
(String server, int port, String inifile, int timeout, String username, String password, TdbLanguage lang, int stepping) Constructor -- setup the session pool with full web parametersTdbWebConnectionPool
(String server, int port, String username, 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 Details
-
TdbWebConnectionPool
public TdbWebConnectionPool(String server, int port, String username, 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(String server, int port, String inifile, int timeout, String username, 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
-