PgConnection |
PgConnection.cancelRequest(Handler<AsyncResult<Void>> handler)
Send a request cancellation message to tell the server to cancel processing request in this connection.
|
PgConnection |
PgConnection.closeHandler(Handler<Void> handler) |
PgConnection |
PgConnection.exceptionHandler(Handler<Throwable> handler) |
PgConnection |
PgConnection.notificationHandler(Handler<PgNotification> handler)
Set an handler called when the connection receives notification on a channel.
|
PgConnection |
PgConnection.prepare(String sql,
Handler<AsyncResult<PreparedQuery>> handler) |
<R> PgConnection |
PgConnection.preparedBatch(String sql,
List<Tuple> batch,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
PgConnection |
PgConnection.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler) |
<R> PgConnection |
PgConnection.preparedQuery(String sql,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
PgConnection |
PgConnection.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
<R> PgConnection |
PgConnection.preparedQuery(String sql,
Tuple arguments,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
PgConnection |
PgConnection.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
<R> PgConnection |
PgConnection.query(String sql,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
PgConnection |
PgConnection.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |