public class HikariDataSource extends HikariConfig implements DataSource, Closeable
| Constructor and Description |
|---|
HikariDataSource()
Default constructor.
|
HikariDataSource(HikariConfig configuration)
Construct a HikariDataSource with the specified configuration.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Shutdown the DataSource and its associated pool.
|
void |
evictConnection(Connection connection)
Evict a connection from the pool.
|
Connection |
getConnection() |
Connection |
getConnection(String username,
String password) |
int |
getLoginTimeout() |
PrintWriter |
getLogWriter() |
Logger |
getParentLogger() |
boolean |
isClosed()
Determine whether the HikariDataSource has been closed.
|
boolean |
isWrapperFor(Class<?> iface) |
void |
resumePool()
Resume allocation of connections from the pool.
|
void |
setHealthCheckRegistry(Object healthCheckRegistry)
Set a Codahale HealthCheckRegistry to use for HikariCP.
|
void |
setLoginTimeout(int seconds) |
void |
setLogWriter(PrintWriter out) |
void |
setMetricRegistry(Object metricRegistry)
Set a Codahale MetricRegistry to use for HikariCP.
|
void |
setMetricsTrackerFactory(MetricsTrackerFactory metricsTrackerFactory) |
void |
shutdown()
Deprecated.
This method has been deprecated, please use
close() instead |
void |
suspendPool()
Suspend allocation of connections from the pool.
|
String |
toString() |
<T> T |
unwrap(Class<T> iface) |
addDataSourceProperty, addHealthCheckProperty, copyState, getCatalog, getConnectionInitSql, getConnectionTestQuery, getConnectionTimeout, getDataSource, getDataSourceClassName, getDataSourceJNDI, getDataSourceProperties, getDriverClassName, getHealthCheckProperties, getHealthCheckRegistry, getIdleTimeout, getJdbcUrl, getLeakDetectionThreshold, getMaximumPoolSize, getMaxLifetime, getMetricRegistry, getMetricsTrackerFactory, getMinimumIdle, getPassword, getPoolName, getScheduledExecutorService, getThreadFactory, getTransactionIsolation, getUsername, getValidationTimeout, isAllowPoolSuspension, isAutoCommit, isInitializationFailFast, isIsolateInternalQueries, isJdbc4ConnectionTest, isReadOnly, isRegisterMbeans, setAllowPoolSuspension, setAutoCommit, setCatalog, setConnectionInitSql, setConnectionTestQuery, setConnectionTimeout, setDataSource, setDataSourceClassName, setDataSourceJNDI, setDataSourceProperties, setDriverClassName, setHealthCheckProperties, setIdleTimeout, setInitializationFailFast, setIsolateInternalQueries, setJdbc4ConnectionTest, setJdbcUrl, setLeakDetectionThreshold, setMaximumPoolSize, setMaxLifetime, setMinimumIdle, setPassword, setPoolName, setReadOnly, setRegisterMbeans, setScheduledExecutorService, setThreadFactory, setTransactionIsolation, setUsername, setValidationTimeout, validatepublic HikariDataSource()
HikariDataSource(HikariConfig) will
result in getConnection() performance that is slightly lower
due to lazy initialization checks.public HikariDataSource(HikariConfig configuration)
configuration - a HikariConfig instancepublic Connection getConnection() throws SQLException
getConnection in interface DataSourceSQLExceptionpublic Connection getConnection(String username, String password) throws SQLException
getConnection in interface DataSourceSQLExceptionpublic PrintWriter getLogWriter() throws SQLException
getLogWriter in interface CommonDataSourceSQLExceptionpublic void setLogWriter(PrintWriter out) throws SQLException
setLogWriter in interface CommonDataSourceSQLExceptionpublic void setLoginTimeout(int seconds)
throws SQLException
setLoginTimeout in interface CommonDataSourceSQLExceptionpublic int getLoginTimeout()
throws SQLException
getLoginTimeout in interface CommonDataSourceSQLExceptionpublic Logger getParentLogger() throws SQLFeatureNotSupportedException
getParentLogger in interface CommonDataSourceSQLFeatureNotSupportedExceptionpublic <T> T unwrap(Class<T> iface) throws SQLException
unwrap in interface WrapperSQLExceptionpublic boolean isWrapperFor(Class<?> iface) throws SQLException
isWrapperFor in interface WrapperSQLExceptionpublic void setMetricRegistry(Object metricRegistry)
setMetricRegistry in class HikariConfigmetricRegistry - the Codahale MetricRegistry to setpublic void setMetricsTrackerFactory(MetricsTrackerFactory metricsTrackerFactory)
setMetricsTrackerFactory in class HikariConfigpublic void setHealthCheckRegistry(Object healthCheckRegistry)
setHealthCheckRegistry in class HikariConfighealthCheckRegistry - the Codahale HealthCheckRegistry to setpublic void evictConnection(Connection connection)
connection - the connection to evict from the poolpublic void suspendPool()
getConnection()
will block indefinitely until resumePool() is called.public void resumePool()
public void close()
close in interface Closeableclose in interface AutoCloseablepublic boolean isClosed()
@Deprecated public void shutdown()
close() insteadCopyright © 2017 Zaxxer.com. All rights reserved.