Uses of Interface
io.vertx.pgclient.PgConnection
-
Packages that use PgConnection Package Description io.vertx.pgclient io.vertx.pgclient.pubsub io.vertx.reactivex.pgclient io.vertx.rxjava3.pgclient -
-
Uses of PgConnection in io.vertx.pgclient
Methods in io.vertx.pgclient that return PgConnection Modifier and Type Method Description static PgConnection
PgConnection. cast(SqlConnection sqlConnection)
Cast aSqlConnection
toPgConnection
.PgConnection
PgConnection. closeHandler(Handler<Void> handler)
Set an handler called when the connection is closed.PgConnection
PgConnection. exceptionHandler(Handler<Throwable> handler)
Set an handler called with connection errors.PgConnection
PgConnection. noticeHandler(Handler<PgNotice> handler)
Set a handler called when the connection receives a notice from the server.PgConnection
PgConnection. notificationHandler(Handler<PgNotification> handler)
Set a handler called when the connection receives notification on a channel.Methods in io.vertx.pgclient that return types with arguments of type PgConnection Modifier and Type Method Description static Future<PgConnection>
PgConnection. connect(Vertx vertx)
Likeconnect(Vertx, PgConnectOptions)
with options build from the environment variables.static Future<PgConnection>
PgConnection. connect(Vertx vertx, PgConnectOptions options)
Connects to the database and returns the connection if that succeeds.static Future<PgConnection>
PgConnection. connect(Vertx vertx, String connectionUri)
Likeconnect(Vertx, PgConnectOptions)
with options build fromconnectionUri
. -
Uses of PgConnection in io.vertx.pgclient.pubsub
Methods in io.vertx.pgclient.pubsub that return PgConnection Modifier and Type Method Description PgConnection
PgSubscriber. actualConnection()
-
Uses of PgConnection in io.vertx.reactivex.pgclient
Methods in io.vertx.reactivex.pgclient that return PgConnection Modifier and Type Method Description PgConnection
PgConnection. getDelegate()
Methods in io.vertx.reactivex.pgclient with parameters of type PgConnection Modifier and Type Method Description static PgConnection
PgConnection. newInstance(PgConnection arg)
Constructors in io.vertx.reactivex.pgclient with parameters of type PgConnection Constructor Description PgConnection(PgConnection delegate)
-
Uses of PgConnection in io.vertx.rxjava3.pgclient
Methods in io.vertx.rxjava3.pgclient that return PgConnection Modifier and Type Method Description PgConnection
PgConnection. getDelegate()
Methods in io.vertx.rxjava3.pgclient with parameters of type PgConnection Modifier and Type Method Description static PgConnection
PgConnection. newInstance(PgConnection arg)
Constructors in io.vertx.rxjava3.pgclient with parameters of type PgConnection Constructor Description PgConnection(PgConnection delegate)
-