| Package | Description | 
|---|---|
| io.vertx.rxjava3.db2client | |
| io.vertx.rxjava3.mssqlclient | |
| io.vertx.rxjava3.mysqlclient | |
| io.vertx.rxjava3.pgclient | |
| io.vertx.rxjava3.sqlclient | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
DB2Connection
A connection to DB2 server. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DB2Connection | 
DB2Connection.cast(SqlConnection sqlConnection)
Cast a  to  
DB2Connection. | 
| Modifier and Type | Method and Description | 
|---|---|
DB2Pool | 
DB2Pool.connectHandler(Handler<SqlConnection> handler)  | 
DB2Pool | 
DB2Pool.connectionProvider(java.util.function.Function<Context,Single<SqlConnection>> provider)  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
MSSQLConnection
A connection to Microsoft SQL Server. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static MSSQLConnection | 
MSSQLConnection.cast(SqlConnection sqlConnection)
Cast a  to  
MSSQLConnection. | 
| Modifier and Type | Method and Description | 
|---|---|
MSSQLPool | 
MSSQLPool.connectHandler(Handler<SqlConnection> handler)  | 
MSSQLPool | 
MSSQLPool.connectionProvider(java.util.function.Function<Context,Single<SqlConnection>> provider)  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
MySQLConnection
An interface which represents a connection to MySQL server. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static MySQLConnection | 
MySQLConnection.cast(SqlConnection sqlConnection)
Cast a  to  
MySQLConnection. | 
| Modifier and Type | Method and Description | 
|---|---|
MySQLPool | 
MySQLPool.connectHandler(Handler<SqlConnection> handler)  | 
MySQLPool | 
MySQLPool.connectionProvider(java.util.function.Function<Context,Single<SqlConnection>> provider)  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
PgConnection
A connection to Postgres. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static PgConnection | 
PgConnection.cast(SqlConnection sqlConnection)
Cast a  to  
PgConnection. | 
| Modifier and Type | Method and Description | 
|---|---|
PgPool | 
PgPool.connectHandler(Handler<SqlConnection> handler)  | 
PgPool | 
PgPool.connectionProvider(java.util.function.Function<Context,Single<SqlConnection>> provider)  | 
| Modifier and Type | Field and Description | 
|---|---|
static io.vertx.lang.rx.TypeArg<SqlConnection> | 
SqlConnection.__TYPE_ARG  | 
| Modifier and Type | Method and Description | 
|---|---|
SqlConnection | 
SqlConnection.closeHandler(Handler<Void> handler)
Set an handler called when the connection is closed. 
 | 
SqlConnection | 
SqlConnection.exceptionHandler(Handler<Throwable> handler)
Set an handler called with connection errors. 
 | 
static SqlConnection | 
SqlConnection.newInstance(SqlConnection arg)  | 
| Modifier and Type | Method and Description | 
|---|---|
Single<SqlConnection> | 
Pool.getConnection()
Get a connection from the pool. 
 | 
Single<SqlConnection> | 
Pool.rxGetConnection()
Get a connection from the pool. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Pool | 
Pool.connectHandler(Handler<SqlConnection> handler)
Set an handler called when the pool has established a connection to the database. 
 | 
Pool | 
Pool.connectionProvider(java.util.function.Function<Context,Single<SqlConnection>> provider)
Replace the default pool connection provider, the new  
provider returns a future connection for a
 given . | 
<T> Maybe<T> | 
Pool.rxWithConnection(java.util.function.Function<SqlConnection,Maybe<T>> function)
Get a connection from the pool and execute the given  
function. | 
<T> Maybe<T> | 
Pool.rxWithTransaction(java.util.function.Function<SqlConnection,Maybe<T>> function)
Execute the given  
function within a transaction. | 
<T> Maybe<T> | 
Pool.withConnection(java.util.function.Function<SqlConnection,Maybe<T>> function)
Get a connection from the pool and execute the given  
function. | 
<T> Maybe<T> | 
Pool.withTransaction(java.util.function.Function<SqlConnection,Maybe<T>> function)
Execute the given  
function within a transaction. | 
Copyright © 2021 Eclipse. All rights reserved.