Package io.vertx.reactivex.pgclient
Class PgConnection
- java.lang.Object
-
- io.vertx.reactivex.sqlclient.SqlClient
-
- io.vertx.reactivex.sqlclient.SqlConnection
-
- io.vertx.reactivex.pgclient.PgConnection
-
public class PgConnection extends SqlConnection
A connection to Postgres.The connection object supports all the operations defined in the interface, it also provides additional support:
- Notification
- Request Cancellation
originalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<PgConnection>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description PgConnection(io.vertx.pgclient.PgConnection delegate)PgConnection(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PgConnectioncancelRequest(io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler)Send a request cancellation message to tell the server to cancel processing request in this connection.static PgConnectioncast(SqlConnection sqlConnection)Cast a toPgConnection.PgConnectioncloseHandler(io.vertx.core.Handler<Void> handler)Set an handler called when the connection is closed.static voidconnect(Vertx vertx)Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build from the environment variables.static voidconnect(Vertx vertx, io.vertx.core.Handler<io.vertx.core.AsyncResult<PgConnection>> handler)Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build from the environment variables.static voidconnect(Vertx vertx, io.vertx.pgclient.PgConnectOptions options)Connects to the database and returns the connection if that succeeds.static voidconnect(Vertx vertx, io.vertx.pgclient.PgConnectOptions options, io.vertx.core.Handler<io.vertx.core.AsyncResult<PgConnection>> handler)Connects to the database and returns the connection if that succeeds.static voidconnect(Vertx vertx, String connectionUri)Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build fromconnectionUri.static voidconnect(Vertx vertx, String connectionUri, io.vertx.core.Handler<io.vertx.core.AsyncResult<PgConnection>> handler)Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build fromconnectionUri.booleanequals(Object o)PgConnectionexceptionHandler(io.vertx.core.Handler<Throwable> handler)Set an handler called with connection errors.io.vertx.pgclient.PgConnectiongetDelegate()inthashCode()static PgConnectionnewInstance(io.vertx.pgclient.PgConnection arg)PgConnectionnoticeHandler(io.vertx.core.Handler<io.vertx.pgclient.PgNotice> handler)Set a handler called when the connection receives a notice from the server.PgConnectionnotificationHandler(io.vertx.core.Handler<io.vertx.pgclient.PgNotification> handler)Set a handler called when the connection receives notification on a channel.PgConnectionprepare(String sql)Create a prepared statement using the givensqlstring.PgConnectionprepare(String sql, io.vertx.core.Handler<io.vertx.core.AsyncResult<PreparedStatement>> handler)Create a prepared statement using the givensqlstring.intprocessId()static io.reactivex.Single<PgConnection>rxConnect(Vertx vertx)Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build from the environment variables.static io.reactivex.Single<PgConnection>rxConnect(Vertx vertx, io.vertx.pgclient.PgConnectOptions options)Connects to the database and returns the connection if that succeeds.static io.reactivex.Single<PgConnection>rxConnect(Vertx vertx, String connectionUri)Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build fromconnectionUri.io.reactivex.Single<PreparedStatement>rxPrepare(String sql)Create a prepared statement using the givensqlstring.intsecretKey()StringtoString()-
Methods inherited from class io.vertx.reactivex.sqlclient.SqlConnection
begin, begin, close, close, databaseMetadata, isSSL, newInstance, prepare, prepare, rxBegin, rxClose, rxPrepare
-
Methods inherited from class io.vertx.reactivex.sqlclient.SqlClient
newInstance, preparedQuery, preparedQuery, query
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<PgConnection> __TYPE_ARG
-
-
Constructor Detail
-
PgConnection
public PgConnection(io.vertx.pgclient.PgConnection delegate)
-
PgConnection
public PgConnection(Object delegate)
-
-
Method Detail
-
toString
public String toString()
- Overrides:
toStringin classSqlConnection
-
equals
public boolean equals(Object o)
- Overrides:
equalsin classSqlConnection
-
hashCode
public int hashCode()
- Overrides:
hashCodein classSqlConnection
-
getDelegate
public io.vertx.pgclient.PgConnection getDelegate()
- Overrides:
getDelegatein classSqlConnection
-
connect
public static void connect(Vertx vertx, io.vertx.pgclient.PgConnectOptions options, io.vertx.core.Handler<io.vertx.core.AsyncResult<PgConnection>> handler)
Connects to the database and returns the connection if that succeeds. The connection interracts directly with the database is not a proxy, so closing the connection will close the underlying connection to the database.- Parameters:
vertx- the vertx instanceoptions- the connect optionshandler- the handler called with the connection or the failure
-
connect
public static void connect(Vertx vertx, io.vertx.pgclient.PgConnectOptions options)
Connects to the database and returns the connection if that succeeds. The connection interracts directly with the database is not a proxy, so closing the connection will close the underlying connection to the database.- Parameters:
vertx- the vertx instanceoptions- the connect options
-
rxConnect
public static io.reactivex.Single<PgConnection> rxConnect(Vertx vertx, io.vertx.pgclient.PgConnectOptions options)
Connects to the database and returns the connection if that succeeds. The connection interracts directly with the database is not a proxy, so closing the connection will close the underlying connection to the database.- Parameters:
vertx- the vertx instanceoptions- the connect options- Returns:
-
connect
public static void connect(Vertx vertx, io.vertx.core.Handler<io.vertx.core.AsyncResult<PgConnection>> handler)
Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build from the environment variables.- Parameters:
vertx-handler-
-
connect
public static void connect(Vertx vertx)
Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build from the environment variables.- Parameters:
vertx-
-
rxConnect
public static io.reactivex.Single<PgConnection> rxConnect(Vertx vertx)
Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build from the environment variables.- Parameters:
vertx-- Returns:
-
connect
public static void connect(Vertx vertx, String connectionUri, io.vertx.core.Handler<io.vertx.core.AsyncResult<PgConnection>> handler)
Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build fromconnectionUri.- Parameters:
vertx-connectionUri-handler-
-
connect
public static void connect(Vertx vertx, String connectionUri)
Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build fromconnectionUri.- Parameters:
vertx-connectionUri-
-
rxConnect
public static io.reactivex.Single<PgConnection> rxConnect(Vertx vertx, String connectionUri)
Likeconnect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.pgclient.PgConnection>>)with options build fromconnectionUri.- Parameters:
vertx-connectionUri-- Returns:
-
notificationHandler
public PgConnection notificationHandler(io.vertx.core.Handler<io.vertx.pgclient.PgNotification> handler)
Set a handler called when the connection receives notification on a channel. The handler is called with thePgNotificationand has access to the channel name and the notification payload.- Parameters:
handler- the handler- Returns:
- the transaction instance
-
noticeHandler
public PgConnection noticeHandler(io.vertx.core.Handler<io.vertx.pgclient.PgNotice> handler)
Set a handler called when the connection receives a notice from the server.- Parameters:
handler-- Returns:
-
cancelRequest
public PgConnection cancelRequest(io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler)
Send a request cancellation message to tell the server to cancel processing request in this connection.
Note: Use this with caution because the cancellation signal may or may not have any effect.- Parameters:
handler- the handler notified if cancelling request is sent- Returns:
- a reference to this, so the API can be used fluently
-
processId
public int processId()
- Returns:
- The process ID of the target backend
-
secretKey
public int secretKey()
- Returns:
- The secret key for the target backend
-
prepare
public PgConnection prepare(String sql, io.vertx.core.Handler<io.vertx.core.AsyncResult<PreparedStatement>> handler)
Description copied from class:SqlConnectionCreate a prepared statement using the givensqlstring.- Overrides:
preparein classSqlConnection- Parameters:
sql-handler-- Returns:
-
prepare
public PgConnection prepare(String sql)
Description copied from class:SqlConnectionCreate a prepared statement using the givensqlstring.- Overrides:
preparein classSqlConnection- Parameters:
sql-- Returns:
-
rxPrepare
public io.reactivex.Single<PreparedStatement> rxPrepare(String sql)
Description copied from class:SqlConnectionCreate a prepared statement using the givensqlstring.- Overrides:
rxPreparein classSqlConnection- Parameters:
sql-- Returns:
-
exceptionHandler
public PgConnection exceptionHandler(io.vertx.core.Handler<Throwable> handler)
Description copied from class:SqlConnectionSet an handler called with connection errors.- Overrides:
exceptionHandlerin classSqlConnection- Parameters:
handler-- Returns:
-
closeHandler
public PgConnection closeHandler(io.vertx.core.Handler<Void> handler)
Description copied from class:SqlConnectionSet an handler called when the connection is closed.- Overrides:
closeHandlerin classSqlConnection- Parameters:
handler-- Returns:
-
cast
public static PgConnection cast(SqlConnection sqlConnection)
Cast a toPgConnection. This is mostly useful for Vert.x generated APIs like RxJava/Mutiny.- Parameters:
sqlConnection- the connection to cast- Returns:
- a
instance
-
newInstance
public static PgConnection newInstance(io.vertx.pgclient.PgConnection arg)
-
-