Uses of Class
io.vertx.rxjava.mysqlclient.MySQLPool
-
Packages that use MySQLPool Package Description io.vertx.rxjava.mysqlclient -
-
Uses of MySQLPool in io.vertx.rxjava.mysqlclient
Fields in io.vertx.rxjava.mysqlclient with type parameters of type MySQLPool Modifier and Type Field Description static TypeArg<MySQLPool>
MySQLPool. __TYPE_ARG
Methods in io.vertx.rxjava.mysqlclient that return MySQLPool Modifier and Type Method Description MySQLPool
MySQLPool. connectHandler(Handler<SqlConnection> handler)
MySQLPool
MySQLPool. connectionProvider(Function<Context,Future<SqlConnection>> provider)
static MySQLPool
MySQLPool. newInstance(MySQLPool arg)
static MySQLPool
MySQLPool. pool(MySQLConnectOptions database, PoolOptions options)
Create a connection pool to the MySQLserver
configured with the givenoptions
.static MySQLPool
MySQLPool. pool(Vertx vertx, MySQLConnectOptions database, PoolOptions options)
Likepool(java.lang.String)
with a specific instance.static MySQLPool
MySQLPool. pool(Vertx vertx, String connectionUri)
Likepool(java.lang.String)
with default options.static MySQLPool
MySQLPool. pool(Vertx vertx, String connectionUri, PoolOptions options)
static MySQLPool
MySQLPool. pool(Vertx vertx, List<MySQLConnectOptions> databases, PoolOptions options)
Likepool(java.lang.String)
with a specific instance.static MySQLPool
MySQLPool. pool(String connectionUri)
Likepool(java.lang.String)
with default options.static MySQLPool
MySQLPool. pool(String connectionUri, PoolOptions options)
static MySQLPool
MySQLPool. pool(List<MySQLConnectOptions> databases, PoolOptions options)
Create a connection pool to the MySQLdatabases
with round-robin selection.
-