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 Type
    Method
    Description
    io.vertx.sqlclient.SqlConnectOptions
    The SqlConnectOptions used to configure the Pool
    io.vertx.sqlclient.PoolOptions
    The PoolOptions used to configure the Pool
  • Method Details

    • poolOptions

      io.vertx.sqlclient.PoolOptions poolOptions()
      The PoolOptions used to configure the Pool
    • connectOptions

      io.vertx.sqlclient.SqlConnectOptions connectOptions(URI uri)
      The SqlConnectOptions used to configure the Pool
      Parameters:
      uri - A URI representing the JDBC URL or connection URI specified in the configuration properties, usually via JdbcSettings.JPA_JDBC_URL, or null if not specified.