| Package | Description |
|---|---|
| io.vertx.reactivex.sqlclient | |
| io.vertx.rxjava.sqlclient | |
| io.vertx.sqlclient |
| Modifier and Type | Method and Description |
|---|---|
Transaction |
Transaction.getDelegate() |
| Modifier and Type | Method and Description |
|---|---|
static Transaction |
Transaction.newInstance(Transaction arg) |
| Constructor and Description |
|---|
Transaction(Transaction delegate) |
| Modifier and Type | Method and Description |
|---|---|
Transaction |
Transaction.getDelegate() |
| Modifier and Type | Method and Description |
|---|---|
static Transaction |
Transaction.newInstance(Transaction arg) |
| Constructor and Description |
|---|
Transaction(Transaction delegate) |
| Modifier and Type | Method and Description |
|---|---|
Transaction |
Transaction.abortHandler(Handler<Void> handler)
Set an handler to be called when the transaction is aborted.
|
Transaction |
SqlConnection.begin()
Begin a transaction and returns a
Transaction for controlling and tracking
this transaction. |
Transaction |
Transaction.prepare(String sql,
Handler<AsyncResult<PreparedQuery>> handler)
Create a prepared query.
|
<R> Transaction |
Transaction.preparedBatch(String sql,
List<Tuple> batch,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
Transaction |
Transaction.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler) |
<R> Transaction |
Transaction.preparedQuery(String sql,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
Transaction |
Transaction.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
<R> Transaction |
Transaction.preparedQuery(String sql,
Tuple arguments,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
Transaction |
Transaction.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
<R> Transaction |
Transaction.query(String sql,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
Transaction |
Transaction.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
| Modifier and Type | Method and Description |
|---|---|
Future<Transaction> |
Pool.begin()
Like
Pool.begin(Handler) but returns a Future of the asynchronous result |
| Modifier and Type | Method and Description |
|---|---|
void |
Pool.begin(Handler<AsyncResult<Transaction>> handler)
Borrow a connection from the pool and begin a transaction, the underlying connection will be returned
to the pool when the transaction ends.
|
Copyright © 2019 Eclipse. All rights reserved.