A C G H I R S U V 

A

addDataSourceProperty(String, Object) - Method in class com.zaxxer.hikari.HikariConfig
 

C

closeIdleConnections() - Method in class com.zaxxer.hikari.HikariPool
closeIdleConnections() - Method in interface com.zaxxer.hikari.HikariPoolMBean
 
com.zaxxer.hikari - package com.zaxxer.hikari
 
customize(Connection) - Method in interface com.zaxxer.hikari.IConnectionCustomizer
The Connection object that is passed into this method is the "raw" Connection instance provided by the JDBC driver, not a wrapped HikariCP connection.

G

getAcquireIncrement() - Method in class com.zaxxer.hikari.HikariConfig
This property controls the maximum number of connections that are acquired at one time, with the exception of pool initialization.
getAcquireIncrement() - Method in interface com.zaxxer.hikari.HikariConfigMBean
This property controls the maximum number of connections that are acquired at one time, with the exception of pool initialization.
getAcquireRetries() - Method in class com.zaxxer.hikari.HikariConfig
This is a per-connection attempt retry count used during new connection creation (acquisition).
getAcquireRetries() - Method in interface com.zaxxer.hikari.HikariConfigMBean
This is a per-connection attempt retry count used during new connection creation (acquisition).
getAcquireRetryDelay() - Method in class com.zaxxer.hikari.HikariConfig
This property controls the number of milliseconds to delay between attempts to acquire a connection to the database.
getAcquireRetryDelay() - Method in interface com.zaxxer.hikari.HikariConfigMBean
This property controls the number of milliseconds to delay between attempts to acquire a connection to the database.
getActiveConnections() - Method in class com.zaxxer.hikari.HikariPool
getActiveConnections() - Method in interface com.zaxxer.hikari.HikariPoolMBean
 
getConnection() - Method in class com.zaxxer.hikari.HikariDataSource
getConnection(String, String) - Method in class com.zaxxer.hikari.HikariDataSource
getConnectionCustomizerClassName() - Method in class com.zaxxer.hikari.HikariConfig
 
getConnectionInitSql() - Method in class com.zaxxer.hikari.HikariConfig
 
getConnectionTestQuery() - Method in class com.zaxxer.hikari.HikariConfig
 
getConnectionTimeout() - Method in class com.zaxxer.hikari.HikariConfig
This is for "legacy" databases that do not support the JDBC4 Connection.isValid() API.
getConnectionTimeout() - Method in interface com.zaxxer.hikari.HikariConfigMBean
This is for "legacy" databases that do not support the JDBC4 Connection.isValid() API.
getDataSource() - Method in class com.zaxxer.hikari.HikariConfig
 
getDataSourceClassName() - Method in class com.zaxxer.hikari.HikariConfig
 
getDataSourceProperties() - Method in class com.zaxxer.hikari.HikariConfig
 
getIdleConnections() - Method in class com.zaxxer.hikari.HikariPool
getIdleConnections() - Method in interface com.zaxxer.hikari.HikariPoolMBean
 
getIdleTimeout() - Method in class com.zaxxer.hikari.HikariConfig
This property controls the maximum amount of time (in milliseconds) that a connection is allowed to sit idle in the pool.
getIdleTimeout() - Method in interface com.zaxxer.hikari.HikariConfigMBean
This property controls the maximum amount of time (in milliseconds) that a connection is allowed to sit idle in the pool.
getLeakDetectionThreshold() - Method in class com.zaxxer.hikari.HikariConfig
This property controls the amount of time that a connection can be out of the pool before a message is logged indicating a possible connection leak.
getLeakDetectionThreshold() - Method in interface com.zaxxer.hikari.HikariConfigMBean
This property controls the amount of time that a connection can be out of the pool before a message is logged indicating a possible connection leak.
getLoginTimeout() - Method in class com.zaxxer.hikari.HikariDataSource
getLogWriter() - Method in class com.zaxxer.hikari.HikariDataSource
getMaximumPoolSize() - Method in class com.zaxxer.hikari.HikariConfig
The property controls the minimum number of connections that HikariCP tries to maintain in the pool, including both idle and in-use connections.
getMaximumPoolSize() - Method in interface com.zaxxer.hikari.HikariConfigMBean
The property controls the minimum number of connections that HikariCP tries to maintain in the pool, including both idle and in-use connections.
getMaxLifetime() - Method in class com.zaxxer.hikari.HikariConfig
This property controls the maximum lifetime of a connection in the pool.
getMaxLifetime() - Method in interface com.zaxxer.hikari.HikariConfigMBean
This property controls the maximum lifetime of a connection in the pool.
getMinimumPoolSize() - Method in class com.zaxxer.hikari.HikariConfig
The property controls the maximum size that the pool is allowed to reach, including both idle and in-use connections.
getMinimumPoolSize() - Method in interface com.zaxxer.hikari.HikariConfigMBean
The property controls the maximum size that the pool is allowed to reach, including both idle and in-use connections.
getParentLogger() - Method in class com.zaxxer.hikari.HikariDataSource
getPoolName() - Method in class com.zaxxer.hikari.HikariConfig
The name of the connection pool.
getPoolName() - Method in interface com.zaxxer.hikari.HikariConfigMBean
The name of the connection pool.
getThreadsAwaitingConnection() - Method in class com.zaxxer.hikari.HikariPool
getThreadsAwaitingConnection() - Method in interface com.zaxxer.hikari.HikariPoolMBean
 
getTotalConnections() - Method in class com.zaxxer.hikari.HikariPool
getTotalConnections() - Method in interface com.zaxxer.hikari.HikariPoolMBean
 
getTransactionIsolation() - Method in class com.zaxxer.hikari.HikariConfig
 

H

HikariConfig - Class in com.zaxxer.hikari
 
HikariConfig() - Constructor for class com.zaxxer.hikari.HikariConfig
Default constructor
HikariConfig(Properties) - Constructor for class com.zaxxer.hikari.HikariConfig
Construct a HikariConfig from the specified properties object.
HikariConfig(String) - Constructor for class com.zaxxer.hikari.HikariConfig
Construct a HikariConfig from the specified property file name.
HikariConfigMBean - Interface in com.zaxxer.hikari
The javax.management MBean for a Hikiri pool configuration.
HikariDataSource - Class in com.zaxxer.hikari
The HikariCP pooled DataSource.
HikariDataSource(HikariConfig) - Constructor for class com.zaxxer.hikari.HikariDataSource
Construct a HikariDataSource with the specified configuration.
HikariMBeanElf - Class in com.zaxxer.hikari
Helper class to register our MBeans.
HikariPool - Class in com.zaxxer.hikari
This is the primary connection pool class that provides the basic pooling behavior for HikariCP.
HikariPoolMBean - Interface in com.zaxxer.hikari
The javax.management MBean for a Hikiri pool instance.

I

IConnectionCustomizer - Interface in com.zaxxer.hikari
Interface whose implementers can perform one-time customization of a Connection before it is added to the pool.
isAutoCommit() - Method in class com.zaxxer.hikari.HikariConfig
 
isInitializationFailFast() - Method in class com.zaxxer.hikari.HikariConfig
 
isJdbc4ConnectionTest() - Method in class com.zaxxer.hikari.HikariConfig
 
isRegisterMbeans() - Method in class com.zaxxer.hikari.HikariConfig
 
isWrapperFor(Class<?>) - Method in class com.zaxxer.hikari.HikariDataSource

R

registerMBeans(HikariConfig, HikariPool) - Static method in class com.zaxxer.hikari.HikariMBeanElf
Register MBeans for HikariConfig and HikariPool.
releaseConnection(IHikariConnectionProxy) - Method in class com.zaxxer.hikari.HikariPool
Release a connection back to the pool, or permanently close it if it is broken.

S

setAcquireIncrement(int) - Method in class com.zaxxer.hikari.HikariConfig
This property controls the maximum number of connections that are acquired at one time, with the exception of pool initialization.
setAcquireIncrement(int) - Method in interface com.zaxxer.hikari.HikariConfigMBean
This property controls the maximum number of connections that are acquired at one time, with the exception of pool initialization.
setAcquireRetries(int) - Method in class com.zaxxer.hikari.HikariConfig
This is a per-connection attempt retry count used during new connection creation (acquisition).
setAcquireRetries(int) - Method in interface com.zaxxer.hikari.HikariConfigMBean
This is a per-connection attempt retry count used during new connection creation (acquisition).
setAcquireRetryDelay(long) - Method in class com.zaxxer.hikari.HikariConfig
This property controls the number of milliseconds to delay between attempts to acquire a connection to the database.
setAcquireRetryDelay(long) - Method in interface com.zaxxer.hikari.HikariConfigMBean
This property controls the number of milliseconds to delay between attempts to acquire a connection to the database.
setAutoCommit(boolean) - Method in class com.zaxxer.hikari.HikariConfig
 
setConnectionCustomizerClassName(String) - Method in class com.zaxxer.hikari.HikariConfig
 
setConnectionInitSql(String) - Method in class com.zaxxer.hikari.HikariConfig
 
setConnectionTestQuery(String) - Method in class com.zaxxer.hikari.HikariConfig
 
setConnectionTimeout(long) - Method in class com.zaxxer.hikari.HikariConfig
This is for "legacy" databases that do not support the JDBC4 {code Connection.isValid()} API.
setConnectionTimeout(long) - Method in interface com.zaxxer.hikari.HikariConfigMBean
This is for "legacy" databases that do not support the JDBC4 {code Connection.isValid()} API.
setDataSource(DataSource) - Method in class com.zaxxer.hikari.HikariConfig
 
setDataSourceClassName(String) - Method in class com.zaxxer.hikari.HikariConfig
 
setDataSourceProperties(Properties) - Method in class com.zaxxer.hikari.HikariConfig
 
setIdleTimeout(long) - Method in class com.zaxxer.hikari.HikariConfig
This property controls the maximum amount of time (in milliseconds) that a connection is allowed to sit idle in the pool.
setIdleTimeout(long) - Method in interface com.zaxxer.hikari.HikariConfigMBean
This property controls the maximum amount of time (in milliseconds) that a connection is allowed to sit idle in the pool.
setInitializationFailFast(boolean) - Method in class com.zaxxer.hikari.HikariConfig
 
setJdbc4ConnectionTest(boolean) - Method in class com.zaxxer.hikari.HikariConfig
 
setLeakDetectionThreshold(long) - Method in class com.zaxxer.hikari.HikariConfig
This property controls the amount of time that a connection can be out of the pool before a message is logged indicating a possible connection leak.
setLeakDetectionThreshold(long) - Method in interface com.zaxxer.hikari.HikariConfigMBean
This property controls the amount of time that a connection can be out of the pool before a message is logged indicating a possible connection leak.
setLoginTimeout(int) - Method in class com.zaxxer.hikari.HikariDataSource
setLogWriter(PrintWriter) - Method in class com.zaxxer.hikari.HikariDataSource
setMaximumPoolSize(int) - Method in class com.zaxxer.hikari.HikariConfig
The property controls the maximum size that the pool is allowed to reach, including both idle and in-use connections.
setMaximumPoolSize(int) - Method in interface com.zaxxer.hikari.HikariConfigMBean
The property controls the maximum size that the pool is allowed to reach, including both idle and in-use connections.
setMaxLifetime(long) - Method in class com.zaxxer.hikari.HikariConfig
This property controls the maximum lifetime of a connection in the pool.
setMaxLifetime(long) - Method in interface com.zaxxer.hikari.HikariConfigMBean
This property controls the maximum lifetime of a connection in the pool.
setMinimumPoolSize(int) - Method in class com.zaxxer.hikari.HikariConfig
The property controls the minimum number of connections that HikariCP tries to maintain in the pool, including both idle and in-use connections.
setMinimumPoolSize(int) - Method in interface com.zaxxer.hikari.HikariConfigMBean
The property controls the minimum number of connections that HikariCP tries to maintain in the pool, including both idle and in-use connections.
setPoolName(String) - Method in class com.zaxxer.hikari.HikariConfig
Set the name of the connection pool.
setRegisterMbeans(boolean) - Method in class com.zaxxer.hikari.HikariConfig
 
setTransactionIsolation(String) - Method in class com.zaxxer.hikari.HikariConfig
Set the default transaction isolation level.
setUseInstrumentation(boolean) - Method in class com.zaxxer.hikari.HikariConfig
 
shutdown() - Method in class com.zaxxer.hikari.HikariDataSource
 

U

unregisterMBeans(HikariConfig, HikariPool) - Static method in class com.zaxxer.hikari.HikariMBeanElf
Unregister MBeans for HikariConfig and HikariPool.
unwrap(Class<T>) - Method in class com.zaxxer.hikari.HikariDataSource

V

validate() - Method in class com.zaxxer.hikari.HikariConfig
 
A C G H I R S U V 

Copyright © 2014 Zaxxer.com. All rights reserved.