
io.reactiverse.pgclient.PgConnectOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactive-pg-client Show documentation
Show all versions of reactive-pg-client Show documentation
The reactive Postgres client
The newest version!
package io.reactiverse.pgclient;
import io.reactiverse.pgclient.impl.PgConnectionUriParser;
import io.vertx.core.json.JsonObject;
import static java.lang.Integer.parseInt;
import static java.lang.System.getenv;
public interface PgConnectOptions {
String getHost();
PgConnectOptions setHost(String host);
int getPort();
PgConnectOptions setPort(int port);
String getDatabase();
PgConnectOptions setDatabase(String database);
String getUser();
PgConnectOptions setUser(String user);
String getPassword();
PgConnectOptions setPassword(String password);
int getPipeliningLimit();
PgConnectOptions setPipeliningLimit(int pipeliningLimit);
boolean getCachePreparedStatements();
PgConnectOptions setCachePreparedStatements(boolean cachePreparedStatements);
boolean isUsingDomainSocket();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy