Package | Description |
---|---|
io.vertx.ext.asyncsql | |
io.vertx.groovy.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 |
MySQLClient.createNonShared(Vertx vertx,
JsonObject config)
Create a MySQL client which maintains its own pool.
|
static AsyncSQLClient |
PostgreSQLClient.createNonShared(Vertx vertx,
JsonObject config)
Create a PostgreSQL client which maintains its own pool.
|
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)
Like
PostgreSQLClient.createShared(io.vertx.core.Vertx, JsonObject, String) but with the default 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
|
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.
|
Modifier and Type | Method and Description |
---|---|
static AsyncSQLClient |
MySQLClient_GroovyStaticExtension.createNonShared(MySQLClient j_receiver,
Vertx vertx,
Map<String,Object> config) |
static AsyncSQLClient |
PostgreSQLClient_GroovyStaticExtension.createNonShared(PostgreSQLClient j_receiver,
Vertx vertx,
Map<String,Object> config) |
static AsyncSQLClient |
MySQLClient_GroovyStaticExtension.createShared(MySQLClient j_receiver,
Vertx vertx,
Map<String,Object> config) |
static AsyncSQLClient |
MySQLClient_GroovyStaticExtension.createShared(MySQLClient j_receiver,
Vertx vertx,
Map<String,Object> config,
String poolName) |
static AsyncSQLClient |
PostgreSQLClient_GroovyStaticExtension.createShared(PostgreSQLClient j_receiver,
Vertx vertx,
Map<String,Object> config) |
static AsyncSQLClient |
PostgreSQLClient_GroovyStaticExtension.createShared(PostgreSQLClient j_receiver,
Vertx vertx,
Map<String,Object> config,
String poolName) |
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 © 2017. All rights reserved.