Package | Description |
---|---|
io.vertx.ext.asyncsql | |
io.vertx.reactivex.ext.asyncsql | |
io.vertx.rxjava.ext.asyncsql |
Modifier and Type | Interface and Description |
---|---|
interface |
MySQLClient
Represents an asynchronous MySQL client
|
interface |
PostgreSQLClient
Represents an PostgreSQL client
|
Modifier and Type | Method and Description |
---|---|
static AsyncSQLClient |
PostgreSQLClient.createNonShared(Vertx vertx,
JsonObject config)
Create a PostgreSQL client which maintains its own pool.
|
static AsyncSQLClient |
MySQLClient.createNonShared(Vertx vertx,
JsonObject config)
Create a MySQL client which maintains its own pool.
|
static AsyncSQLClient |
PostgreSQLClient.createShared(Vertx vertx,
JsonObject config)
Like
PostgreSQLClient.createShared(io.vertx.core.Vertx, JsonObject, String) but with the default pool name |
static AsyncSQLClient |
MySQLClient.createShared(Vertx vertx,
JsonObject config)
Like
MySQLClient.createShared(io.vertx.core.Vertx, JsonObject, String) but with the default pool name |
static AsyncSQLClient |
PostgreSQLClient.createShared(Vertx vertx,
JsonObject config,
String poolName)
Create a PostgreSQL client which shares its pool with any other MySQL clients created with the same pool name.
|
static AsyncSQLClient |
MySQLClient.createShared(Vertx vertx,
JsonObject config,
String poolName)
Create a MySQL client which shares its data source with any other MySQL clients created with the same
data source name
|
Modifier and Type | Method and Description |
---|---|
AsyncSQLClient |
AsyncSQLClient.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static AsyncSQLClient |
AsyncSQLClient.newInstance(AsyncSQLClient arg) |
Constructor and Description |
---|
AsyncSQLClient(AsyncSQLClient delegate) |
Modifier and Type | Method and Description |
---|---|
AsyncSQLClient |
AsyncSQLClient.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static AsyncSQLClient |
AsyncSQLClient.newInstance(AsyncSQLClient arg) |
Constructor and Description |
---|
AsyncSQLClient(AsyncSQLClient delegate) |
Copyright © 2023 Eclipse. All rights reserved.