Package io.vertx.reactivex.mysqlclient
Class MySQLBuilder
- java.lang.Object
-
- io.vertx.reactivex.mysqlclient.MySQLBuilder
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<MySQLBuilder>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description MySQLBuilder(MySQLBuilder delegate)
MySQLBuilder(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ClientBuilder<SqlClient>
client()
Provide a builder for MySQL client backed by a connection pool.static SqlClient
client(Handler<ClientBuilder<SqlClient>> handler)
Build a client backed by a connection pool with the specifiedblock
argument.boolean
equals(Object o)
MySQLBuilder
getDelegate()
int
hashCode()
static MySQLBuilder
newInstance(MySQLBuilder arg)
static ClientBuilder<Pool>
pool()
Provide a builder for MySQL pool of connectionsstatic Pool
pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument.String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<MySQLBuilder> __TYPE_ARG
-
-
Constructor Detail
-
MySQLBuilder
public MySQLBuilder(MySQLBuilder delegate)
-
MySQLBuilder
public MySQLBuilder(Object delegate)
-
-
Method Detail
-
getDelegate
public MySQLBuilder getDelegate()
-
pool
public static Pool pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument. Theblock
argument is usually a lambda that configures the provided builderExample usage:
Pool pool = PgBuilder.pool(builder -> builder.connectingTo(connectOptions));
- Parameters:
block
-- Returns:
- the pool as configured by the code
block
-
pool
public static ClientBuilder<Pool> pool()
Provide a builder for MySQL pool of connectionsExample usage:
Pool pool = PgBuilder.pool().connectingTo(connectOptions).build()
- Returns:
-
client
public static SqlClient client(Handler<ClientBuilder<SqlClient>> handler)
Build a client backed by a connection pool with the specifiedblock
argument. Theblock
argument is usually a lambda that configures the provided builderExample usage:
SqlClient client = PgBuilder.client(builder -> builder.connectingTo(connectOptions));
- Parameters:
handler
-- Returns:
- the client as configured by the code
block
-
client
public static ClientBuilder<SqlClient> client()
Provide a builder for MySQL client backed by a connection pool.Example usage:
SqlClient client = PgBuilder.client().connectingTo(connectOptions).build()
- Returns:
-
newInstance
public static MySQLBuilder newInstance(MySQLBuilder arg)
-
-