Methods Summary |
---|
public int | getConnectionPoolTimeout()Used to set the amount of time, in milliseconds, spent waiting
for an available connection from the pool. An exception is raised
if the timeout is triggered.
|
public int | getDefaultConnectionTimeout()Used to set the default amount of time, in milliseconds, spent waiting
for a connection. This can be overridden by the MessageContext
|
public int | getDefaultSoTimeout()Used to set the default amount of time, in milliseconds, spent waiting
for a reponse. This can be overridden by the MessageContext
|
public int | getMaximumConnectionsPerHost()Used to set the maximum number of connections that will be pooled
for a given host. This setting is also constrained by
the one returned from getMaximumTotalConnections.
|
public int | getMaximumTotalConnections()Used to set the maximum number of connections that the pool can open
for all hosts. Since connections imply sockets and sockets imply
file descriptors, the setting you use must not exceed any limits
your system imposes on the number of open file descriptors a
single process may have.
|