Uses of Class
io.vertx.mutiny.pgclient.PgConnection
Packages that use PgConnection
-
Uses of PgConnection in io.vertx.mutiny.pgclient
Fields in io.vertx.mutiny.pgclient with type parameters of type PgConnectionMethods in io.vertx.mutiny.pgclient that return PgConnectionModifier and TypeMethodDescriptionPgConnection.beginAndForget()Begin a transaction and returns aTransactionfor controlling and tracking this transaction.PgConnection.cancelRequestAndForget()Send a request cancellation message to tell the server to cancel processing request in this connection.static PgConnectionPgConnection.cast(SqlConnection sqlConnection) Cast aSqlConnectiontoPgConnection.PgConnection.closeAndForget()Close the client and release the associated resources.PgConnection.closeHandler(Runnable handler) Set an handler called when the connection is closed.static PgConnectionPgConnection.connectAndAwait(Vertx vertx) Likeconnect(Vertx, PgConnectOptions)with options build from the environment variables.static PgConnectionPgConnection.connectAndAwait(Vertx vertx, io.vertx.pgclient.PgConnectOptions options) Connects to the database and returns the connection if that succeeds.static PgConnectionPgConnection.connectAndAwait(Vertx vertx, String connectionUri) Likeconnect(Vertx, PgConnectOptions)with options build fromconnectionUri.PgConnection.exceptionHandler(Consumer<Throwable> handler) Set an handler called with connection errors.static PgConnectionPgConnection.newInstance(io.vertx.pgclient.PgConnection delegate) Creates a new instance of thePgConnection.PgConnection.noticeHandler(Consumer<io.vertx.pgclient.PgNotice> handler) Set a handler called when the connection receives a notice from the server.PgConnection.notificationHandler(Consumer<io.vertx.pgclient.PgNotification> handler) Set a handler called when the connection receives notification on a channel.PgConnection.prepareAndForget(String sql) Create a prepared statement using the givensqlstring.PgConnection.prepareAndForget(String sql, io.vertx.sqlclient.PrepareOptions options) Create a prepared statement using the givensqlstring.Methods in io.vertx.mutiny.pgclient that return types with arguments of type PgConnectionModifier and TypeMethodDescriptionstatic io.smallrye.mutiny.Uni<PgConnection>Likeconnect(Vertx, PgConnectOptions)with options build from the environment variables.static io.smallrye.mutiny.Uni<PgConnection>Connects to the database and returns the connection if that succeeds.static io.smallrye.mutiny.Uni<PgConnection>Likeconnect(Vertx, PgConnectOptions)with options build fromconnectionUri. -
Uses of PgConnection in io.vertx.mutiny.pgclient.pubsub
Methods in io.vertx.mutiny.pgclient.pubsub that return PgConnection