Class PgConnectOptions
java.lang.Object
io.vertx.sqlclient.SqlConnectOptions
io.vertx.pgclient.PgConnectOptions
- Author:
- Julien Viet, Billy Yuan invalid input: '<'[email protected]>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddProperty(String key, String value) Add a property for this client, which will be sent to server at the connection start.booleanstatic PgConnectOptionsfromEnv()Provide aPgConnectOptionsconfigured with environment variables, if the environment variable is not set, then a default value will take precedence over this.static PgConnectOptionsProvide aPgConnectOptionsconfigured from a connection URI.intbooleaninthashCode()protected voidinit()Initialize with the default options.booleanmerge(JsonObject other) Returns new options created after this object and merged with theotherjson config.setCachePreparedStatements(boolean cachePreparedStatements) Set whether prepared statements cache should be enabled.setDatabase(String database) Specify the default database for the connection.Specify the host for connecting to the server.setPassword(String password) Specify the user password to be used for the authentication.setPipeliningLimit(int pipeliningLimit) setPort(int port) Specify the port for connecting to the server.setPreparedStatementCacheMaxSize(int preparedStatementCacheMaxSize) Set the maximum number of prepared statements that the connection will cache.setPreparedStatementCacheSqlFilter(Predicate<String> predicate) Set a predicate filtering prepared statements that the connection will cache.setPreparedStatementCacheSqlLimit(int preparedStatementCacheSqlLimit) Set the maximum length of prepared statement SQL string that the connection will cache.setProperties(Map<String, String> properties) Set properties for this client, which will be sent to server at the connection start.setReconnectAttempts(int attempts) Set the value of reconnect attemptssetReconnectInterval(long interval) Set the reconnect intervalsetSslMode(SslMode sslmode) SetSslModefor the client, this option can be used to provide different levels of secure protection.setSslNegotiation(SslNegotiation sslNegotiation) SetSslNegotiationfor the client, this option controls how SSL/TLS is negotiated with the server.setSslOptions(ClientSSLOptions sslOptions) setTracingPolicy(TracingPolicy tracingPolicy) Set the tracing policy for the client behavior when Vert.x has tracing enabled.setUseLayer7Proxy(boolean useLayer7Proxy) Set the client to use a layer 7 (application) proxy compatible protocol, set totruewhen the client interacts with a layer 7 proxy like PgBouncer instead of a server.Specify the user account to be used for the authentication.toJson()static PgConnectOptionswrap(SqlConnectOptions options) Methods inherited from class SqlConnectOptions
getCachePreparedStatements, getDatabase, getHost, getMetricsName, getPassword, getPort, getPreparedStatementCacheMaxSize, getPreparedStatementCacheSqlFilter, getProperties, getReconnectAttempts, getReconnectInterval, getSslOptions, getTracingPolicy, getUser, setMetricsName
-
Field Details
-
DEFAULT_HOST
- See Also:
-
DEFAULT_PORT
public static int DEFAULT_PORT -
DEFAULT_DATABASE
- See Also:
-
DEFAULT_USER
- See Also:
-
DEFAULT_PASSWORD
- See Also:
-
DEFAULT_PIPELINING_LIMIT
public static final int DEFAULT_PIPELINING_LIMIT- See Also:
-
DEFAULT_SSLMODE
-
DEFAULT_SSL_NEGOTIATION
-
DEFAULT_USE_LAYER_7_PROXY
public static final boolean DEFAULT_USE_LAYER_7_PROXY- See Also:
-
DEFAULT_PROPERTIES
-
-
Constructor Details
-
PgConnectOptions
public PgConnectOptions() -
PgConnectOptions
-
PgConnectOptions
-
PgConnectOptions
-
-
Method Details
-
wrap
- Returns:
- the
optionsas PostgreSQL specific connect options
-
fromUri
Provide aPgConnectOptionsconfigured from a connection URI.- Parameters:
connectionUri- the connection URI to configure from- Returns:
- a
PgConnectOptionsparsed from the connection URI - Throws:
IllegalArgumentException- when theconnectionUriis in an invalid format
-
fromEnv
Provide aPgConnectOptionsconfigured with environment variables, if the environment variable is not set, then a default value will take precedence over this. -
setHost
Description copied from class:SqlConnectOptionsSpecify the host for connecting to the server.- Overrides:
setHostin classSqlConnectOptions- Parameters:
host- the host to specify- Returns:
- a reference to this, so the API can be used fluently
-
setPort
Description copied from class:SqlConnectOptionsSpecify the port for connecting to the server.- Overrides:
setPortin classSqlConnectOptions- Parameters:
port- the port to specify- Returns:
- a reference to this, so the API can be used fluently
-
setUser
Description copied from class:SqlConnectOptionsSpecify the user account to be used for the authentication.- Overrides:
setUserin classSqlConnectOptions- Parameters:
user- the user to specify- Returns:
- a reference to this, so the API can be used fluently
-
setPassword
Description copied from class:SqlConnectOptionsSpecify the user password to be used for the authentication.- Overrides:
setPasswordin classSqlConnectOptions- Parameters:
password- the password to specify- Returns:
- a reference to this, so the API can be used fluently
-
setDatabase
Description copied from class:SqlConnectOptionsSpecify the default database for the connection.- Overrides:
setDatabasein classSqlConnectOptions- Parameters:
database- the database name to specify- Returns:
- a reference to this, so the API can be used fluently
-
getPipeliningLimit
public int getPipeliningLimit() -
setPipeliningLimit
-
setCachePreparedStatements
Description copied from class:SqlConnectOptionsSet whether prepared statements cache should be enabled.- Overrides:
setCachePreparedStatementsin classSqlConnectOptions- Parameters:
cachePreparedStatements- true if cache should be enabled- Returns:
- a reference to this, so the API can be used fluently
-
setPreparedStatementCacheMaxSize
Description copied from class:SqlConnectOptionsSet the maximum number of prepared statements that the connection will cache.- Overrides:
setPreparedStatementCacheMaxSizein classSqlConnectOptions- Parameters:
preparedStatementCacheMaxSize- the size to set- Returns:
- a reference to this, so the API can be used fluently
-
setPreparedStatementCacheSqlFilter
Description copied from class:SqlConnectOptionsSet a predicate filtering prepared statements that the connection will cache.The default predicate accepts predicate having query length invalid input: '<'
SqlConnectOptions.DEFAULT_PREPARED_STATEMENT_CACHE_SQL_LIMIT- Overrides:
setPreparedStatementCacheSqlFilterin classSqlConnectOptions- Parameters:
predicate- the filter
-
setPreparedStatementCacheSqlLimit
Description copied from class:SqlConnectOptionsSet the maximum length of prepared statement SQL string that the connection will cache.This is an helper setting the
SqlConnectOptions.setPreparedStatementCacheSqlFilter(Predicate).- Overrides:
setPreparedStatementCacheSqlLimitin classSqlConnectOptions- Parameters:
preparedStatementCacheSqlLimit- the maximum length limit of SQL string to set- Returns:
- a reference to this, so the API can be used fluently
-
setProperties
Description copied from class:SqlConnectOptionsSet properties for this client, which will be sent to server at the connection start.- Overrides:
setPropertiesin classSqlConnectOptions- Parameters:
properties- the value of properties to specify- Returns:
- a reference to this, so the API can be used fluently
-
addProperty
Description copied from class:SqlConnectOptionsAdd a property for this client, which will be sent to server at the connection start.- Overrides:
addPropertyin classSqlConnectOptions- Parameters:
key- the value of property keyvalue- the value of property value- Returns:
- a reference to this, so the API can be used fluently
-
getSslMode
- Returns:
- the value of current sslmode
-
setSslMode
SetSslModefor the client, this option can be used to provide different levels of secure protection.- Parameters:
sslmode- the value of sslmode- Returns:
- a reference to this, so the API can be used fluently
-
getSslNegotiation
- Returns:
- the value of current SSL negotiation mode
-
setSslNegotiation
SetSslNegotiationfor the client, this option controls how SSL/TLS is negotiated with the server.- Parameters:
sslNegotiation- the SSL negotiation mode- Returns:
- a reference to this, so the API can be used fluently
-
getUseLayer7Proxy
@Unstable public boolean getUseLayer7Proxy()- Returns:
- whether the client interacts with a layer 7 proxy instead of a server
-
setUseLayer7Proxy
Set the client to use a layer 7 (application) proxy compatible protocol, set totruewhen the client interacts with a layer 7 proxy like PgBouncer instead of a server. Prepared statement caching must be disabled.- Parameters:
useLayer7Proxy- whether to use a layer 7 proxy instead of a server- Returns:
- a reference to this, so the API can be used fluently
-
setReconnectAttempts
Description copied from class:SqlConnectOptionsSet the value of reconnect attempts- Overrides:
setReconnectAttemptsin classSqlConnectOptions- Parameters:
attempts- the maximum number of reconnect attempts- Returns:
- a reference to this, so the API can be used fluently
-
setReconnectInterval
Description copied from class:SqlConnectOptionsSet the reconnect interval- Overrides:
setReconnectIntervalin classSqlConnectOptions- Parameters:
interval- the reconnect interval in ms- Returns:
- a reference to this, so the API can be used fluently
-
setTracingPolicy
Description copied from class:SqlConnectOptionsSet the tracing policy for the client behavior when Vert.x has tracing enabled.- Overrides:
setTracingPolicyin classSqlConnectOptions- Parameters:
tracingPolicy- the tracing policy- Returns:
- a reference to this, so the API can be used fluently
-
setSslOptions
- Overrides:
setSslOptionsin classSqlConnectOptions
-
init
protected void init()Initialize with the default options.- Overrides:
initin classSqlConnectOptions
-
toJson
- Overrides:
toJsonin classSqlConnectOptions
-
getSocketAddress
- Overrides:
getSocketAddressin classSqlConnectOptions
-
equals
-
hashCode
-
isUsingDomainSocket
public boolean isUsingDomainSocket()- Overrides:
isUsingDomainSocketin classSqlConnectOptions
-
merge
Description copied from class:SqlConnectOptionsReturns new options created after this object and merged with theotherjson config.- Overrides:
mergein classSqlConnectOptions- Parameters:
other- the other JSON object- Returns:
- new options created after this object and merged with the
otherjson config
-