Package org.hibernate.reactive.pool.impl
Interface SqlClientPoolConfiguration
- All Superinterfaces:
Serializable,org.hibernate.service.Service
- All Known Implementing Classes:
DefaultSqlClientPoolConfiguration
public interface SqlClientPoolConfiguration
extends org.hibernate.service.Service
A strategy for configuring the Vert.x
Pool
used by DefaultSqlClientPool.
A custom strategy may be selected using the configuration property
Settings.SQL_CLIENT_POOL_CONFIG.
-
Method Summary
Modifier and TypeMethodDescriptionio.vertx.sqlclient.SqlConnectOptionsconnectOptions(URI uri) TheSqlConnectOptionsused to configure thePoolio.vertx.sqlclient.PoolOptionsThePoolOptionsused to configure thePool
-
Method Details
-
poolOptions
io.vertx.sqlclient.PoolOptions poolOptions()ThePoolOptionsused to configure thePool -
connectOptions
TheSqlConnectOptionsused to configure thePool- Parameters:
uri- AURIrepresenting the JDBC URL or connection URI specified in the configuration properties, usually viaJdbcSettings.JPA_JDBC_URL, ornullif not specified.
-