Uses of Class
io.vertx.mutiny.pgclient.PgConnection
-
Packages that use PgConnection Package Description io.vertx.mutiny.pgclient io.vertx.mutiny.pgclient.pubsub -
-
Uses of PgConnection in io.vertx.mutiny.pgclient
Fields in io.vertx.mutiny.pgclient with type parameters of type PgConnection Modifier and Type Field Description static TypeArg<PgConnection>
PgConnection. __TYPE_ARG
Methods in io.vertx.mutiny.pgclient that return PgConnection Modifier and Type Method Description static PgConnection
PgConnection. cast(SqlConnection sqlConnection)
PgConnection
PgConnection. closeHandler(Runnable handler)
static PgConnection
PgConnection. connectAndAwait(Vertx vertx)
Blocking variant ofconnect(io.vertx.mutiny.core.Vertx)
.static PgConnection
PgConnection. connectAndAwait(Vertx vertx, io.vertx.pgclient.PgConnectOptions options)
Blocking variant ofconnect(io.vertx.mutiny.core.Vertx,PgConnectOptions)
.static PgConnection
PgConnection. connectAndAwait(Vertx vertx, String connectionUri)
Blocking variant ofconnect(io.vertx.mutiny.core.Vertx,String)
.PgConnection
PgConnection. exceptionHandler(Consumer<Throwable> handler)
static PgConnection
PgConnection. newInstance(io.vertx.pgclient.PgConnection arg)
PgConnection
PgConnection. notificationHandler(Consumer<io.vertx.pgclient.PgNotification> handler)
PgConnection
PgConnection. prepareAndForget(String sql)
Variant ofprepare(String)
that ignores the result of the operation.Methods in io.vertx.mutiny.pgclient that return types with arguments of type PgConnection Modifier and Type Method Description static io.smallrye.mutiny.Uni<PgConnection>
PgConnection. connect(Vertx vertx)
Likeconnect(io.vertx.mutiny.core.Vertx, io.vertx.pgclient.PgConnectOptions)
with options build from the environment variables.static io.smallrye.mutiny.Uni<PgConnection>
PgConnection. connect(Vertx vertx, io.vertx.pgclient.PgConnectOptions options)
Connects to the database and returns the connection if that succeeds.static io.smallrye.mutiny.Uni<PgConnection>
PgConnection. connect(Vertx vertx, String connectionUri)
Likeconnect(io.vertx.mutiny.core.Vertx, io.vertx.pgclient.PgConnectOptions)
with options build fromconnectionUri
. -
Uses of PgConnection in io.vertx.mutiny.pgclient.pubsub
Methods in io.vertx.mutiny.pgclient.pubsub that return PgConnection Modifier and Type Method Description PgConnection
PgSubscriber. actualConnection()
-