ConnectionPoolConfigurationBuilder |
AbstractRemoteStoreConfigurationChildBuilder.connectionPool() |
|
ConnectionPoolConfigurationBuilder |
RemoteStoreConfigurationBuilder.connectionPool() |
|
ConnectionPoolConfigurationBuilder |
RemoteStoreConfigurationChildBuilder.connectionPool() |
Configures the connection pool
|
ConnectionPoolConfigurationBuilder |
ConnectionPoolConfigurationBuilder.exhaustedAction(ExhaustedAction exhaustedAction) |
Specifies what happens when asking for a connection from a server's pool, and that pool is
exhausted.
|
ConnectionPoolConfigurationBuilder |
ConnectionPoolConfigurationBuilder.maxActive(int maxActive) |
Controls the maximum number of connections per server that are allocated (checked out to
client threads, or idle in the pool) at one time.
|
ConnectionPoolConfigurationBuilder |
ConnectionPoolConfigurationBuilder.maxIdle(int maxIdle) |
Controls the maximum number of idle persistent connections, per server, at any time.
|
ConnectionPoolConfigurationBuilder |
ConnectionPoolConfigurationBuilder.maxTotal(int maxTotal) |
Sets a global limit on the number persistent connections that can be in circulation within the
combined set of servers.
|
ConnectionPoolConfigurationBuilder |
ConnectionPoolConfigurationBuilder.minEvictableIdleTime(long minEvictableIdleTime) |
Specifies the minimum amount of time that an connection may sit idle in the pool before it is
eligible for eviction due to idle time.
|
ConnectionPoolConfigurationBuilder |
ConnectionPoolConfigurationBuilder.minIdle(int minIdle) |
Sets a target value for the minimum number of idle connections (per server) that should always
be available.
|
ConnectionPoolConfigurationBuilder |
ConnectionPoolConfigurationBuilder.read(ConnectionPoolConfiguration template) |
|
ConnectionPoolConfigurationBuilder |
ConnectionPoolConfigurationBuilder.testWhileIdle(boolean testWhileIdle) |
Indicates whether or not idle connections should be validated by sending an TCP packet to the
server, during idle connection eviction runs.
|
ConnectionPoolConfigurationBuilder |
ConnectionPoolConfigurationBuilder.timeBetweenEvictionRuns(long timeBetweenEvictionRuns) |
Indicates how long the eviction thread should sleep before "runs" of examining idle
connections.
|