
io.vertx.rxjava.mysqlclient.MySQLPool Maven / Gradle / Ivy
/*
* Copyright 2014 Red Hat, Inc.
*
* Red Hat licenses this file to you under the Apache License, version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package io.vertx.rxjava.mysqlclient;
import rx.Observable;
import rx.Single;
import io.vertx.rx.java.RxHelper;
import io.vertx.rx.java.WriteStreamSubscriber;
import io.vertx.rx.java.SingleOnSubscribeAdapter;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;
/**
* A of {@link io.vertx.rxjava.mysqlclient.MySQLConnection MySQL Connections}.
*
*
* NOTE: This class has been automatically generated from the {@link io.vertx.mysqlclient.MySQLPool original} non RX-ified interface using Vert.x codegen.
*/
@RxGen(io.vertx.mysqlclient.MySQLPool.class)
public class MySQLPool extends io.vertx.rxjava.sqlclient.Pool {
@Override
public String toString() {
return delegate.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
MySQLPool that = (MySQLPool) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final TypeArg __TYPE_ARG = new TypeArg<>( obj -> new MySQLPool((io.vertx.mysqlclient.MySQLPool) obj),
MySQLPool::getDelegate
);
private final io.vertx.mysqlclient.MySQLPool delegate;
public MySQLPool(io.vertx.mysqlclient.MySQLPool delegate) {
super(delegate);
this.delegate = delegate;
}
public MySQLPool(Object delegate) {
super((io.vertx.mysqlclient.MySQLPool)delegate);
this.delegate = (io.vertx.mysqlclient.MySQLPool)delegate;
}
public io.vertx.mysqlclient.MySQLPool getDelegate() {
return delegate;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with default options.
* @param connectionUri
* @return
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(java.lang.String connectionUri) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(connectionUri));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with database
built from connectionUri
.
* @param connectionUri
* @param options
* @return
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(java.lang.String connectionUri, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(connectionUri, options));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with default options.
* @param vertx
* @param connectionUri
* @return
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(io.vertx.rxjava.core.Vertx vertx, java.lang.String connectionUri) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(vertx.getDelegate(), connectionUri));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with database
built from connectionUri
.
* @param vertx
* @param connectionUri
* @param options
* @return
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(io.vertx.rxjava.core.Vertx vertx, java.lang.String connectionUri, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(vertx.getDelegate(), connectionUri, options));
return ret;
}
/**
* Create a connection pool to the MySQL server
configured with the given options
.
* @param database the options for the connection
* @param options the options for creating the pool
* @return the connection pool
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(io.vertx.mysqlclient.MySQLConnectOptions database, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(database, options));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with a specific instance.
* @param vertx
* @param database
* @param options
* @return
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(io.vertx.rxjava.core.Vertx vertx, io.vertx.mysqlclient.MySQLConnectOptions database, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(vertx.getDelegate(), database, options));
return ret;
}
/**
* Create a connection pool to the MySQL databases
with round-robin selection.
* Round-robin is applied when a new connection is created by the pool.
* @param databases the list of servers
* @param options the options for creating the pool
* @return the connection pool
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(java.util.List databases, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(databases, options));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with a specific instance.
* @param vertx
* @param databases
* @param options
* @return
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(io.vertx.rxjava.core.Vertx vertx, java.util.List databases, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(vertx.getDelegate(), databases, options));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#client} with a default poolOptions
.
* @param connectionUri
* @return
*/
public static io.vertx.rxjava.sqlclient.SqlClient client(java.lang.String connectionUri) {
io.vertx.rxjava.sqlclient.SqlClient ret = io.vertx.rxjava.sqlclient.SqlClient.newInstance((io.vertx.sqlclient.SqlClient)io.vertx.mysqlclient.MySQLPool.client(connectionUri));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#client} with connectOptions
build from connectionUri
.
* @param connectionUri
* @param poolOptions
* @return
*/
public static io.vertx.rxjava.sqlclient.SqlClient client(java.lang.String connectionUri, io.vertx.sqlclient.PoolOptions poolOptions) {
io.vertx.rxjava.sqlclient.SqlClient ret = io.vertx.rxjava.sqlclient.SqlClient.newInstance((io.vertx.sqlclient.SqlClient)io.vertx.mysqlclient.MySQLPool.client(connectionUri, poolOptions));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#client} with a default poolOptions
.
* @param vertx
* @param connectionUri
* @return
*/
public static io.vertx.rxjava.sqlclient.SqlClient client(io.vertx.rxjava.core.Vertx vertx, java.lang.String connectionUri) {
io.vertx.rxjava.sqlclient.SqlClient ret = io.vertx.rxjava.sqlclient.SqlClient.newInstance((io.vertx.sqlclient.SqlClient)io.vertx.mysqlclient.MySQLPool.client(vertx.getDelegate(), connectionUri));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#client} with connectOptions
build from connectionUri
.
* @param vertx
* @param connectionUri
* @param poolOptions
* @return
*/
public static io.vertx.rxjava.sqlclient.SqlClient client(io.vertx.rxjava.core.Vertx vertx, java.lang.String connectionUri, io.vertx.sqlclient.PoolOptions poolOptions) {
io.vertx.rxjava.sqlclient.SqlClient ret = io.vertx.rxjava.sqlclient.SqlClient.newInstance((io.vertx.sqlclient.SqlClient)io.vertx.mysqlclient.MySQLPool.client(vertx.getDelegate(), connectionUri, poolOptions));
return ret;
}
/**
* Create a client backed by a connection pool to the database configured with the given connectOptions
and poolOptions
.
* @param connectOptions
* @param poolOptions the options for creating the backing pool
* @return the client
*/
public static io.vertx.rxjava.sqlclient.SqlClient client(io.vertx.mysqlclient.MySQLConnectOptions connectOptions, io.vertx.sqlclient.PoolOptions poolOptions) {
io.vertx.rxjava.sqlclient.SqlClient ret = io.vertx.rxjava.sqlclient.SqlClient.newInstance((io.vertx.sqlclient.SqlClient)io.vertx.mysqlclient.MySQLPool.client(connectOptions, poolOptions));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#client} with a specific instance.
* @param vertx
* @param connectOptions
* @param poolOptions
* @return
*/
public static io.vertx.rxjava.sqlclient.SqlClient client(io.vertx.rxjava.core.Vertx vertx, io.vertx.mysqlclient.MySQLConnectOptions connectOptions, io.vertx.sqlclient.PoolOptions poolOptions) {
io.vertx.rxjava.sqlclient.SqlClient ret = io.vertx.rxjava.sqlclient.SqlClient.newInstance((io.vertx.sqlclient.SqlClient)io.vertx.mysqlclient.MySQLPool.client(vertx.getDelegate(), connectOptions, poolOptions));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#client} with a specific instance.
* @param vertx
* @param mySQLConnectOptions
* @param options
* @return
*/
public static io.vertx.rxjava.sqlclient.SqlClient client(io.vertx.rxjava.core.Vertx vertx, java.util.List mySQLConnectOptions, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.sqlclient.SqlClient ret = io.vertx.rxjava.sqlclient.SqlClient.newInstance((io.vertx.sqlclient.SqlClient)io.vertx.mysqlclient.MySQLPool.client(vertx.getDelegate(), mySQLConnectOptions, options));
return ret;
}
/**
* Create a client backed by a connection pool to the MySQL databases
with round-robin selection.
* Round-robin is applied when a new connection is created by the pool.
* @param databases the list of databases
* @param options the options for creating the pool
* @return the pooled client
*/
public static io.vertx.rxjava.sqlclient.SqlClient client(java.util.List databases, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.sqlclient.SqlClient ret = io.vertx.rxjava.sqlclient.SqlClient.newInstance((io.vertx.sqlclient.SqlClient)io.vertx.mysqlclient.MySQLPool.client(databases, options));
return ret;
}
public io.vertx.rxjava.mysqlclient.MySQLPool connectHandler(io.vertx.core.Handler handler) {
delegate.connectHandler(new io.vertx.lang.rx.DelegatingHandler<>(handler, event -> io.vertx.rxjava.sqlclient.SqlConnection.newInstance((io.vertx.sqlclient.SqlConnection)event)));
return this;
}
public io.vertx.rxjava.mysqlclient.MySQLPool connectionProvider(java.util.function.Function> provider) {
delegate.connectionProvider(new Function>() {
public io.vertx.core.Future apply(io.vertx.core.Context arg) {
io.vertx.core.Future ret = provider.apply(io.vertx.rxjava.core.Context.newInstance((io.vertx.core.Context)arg));
return ret.map(val -> val.getDelegate());
}
});
return this;
}
/**
* Create a connection pool to the MySQL databases
. The supplier is called
* to provide the options when a new connection is created by the pool.
* @param databases the server supplier
* @param options the options for creating the pool
* @return the connection pool
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(java.util.function.Supplier> databases, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(databases, options));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with a specific instance.
* @param vertx
* @param databases
* @param options
* @return
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(io.vertx.rxjava.core.Vertx vertx, java.util.function.Supplier> databases, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(vertx.getDelegate(), databases, options));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#client} with a specific instance.
* @param vertx
* @param mySQLConnectOptions
* @param options
* @return
*/
public static io.vertx.rxjava.sqlclient.SqlClient client(io.vertx.rxjava.core.Vertx vertx, java.util.function.Supplier> mySQLConnectOptions, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.sqlclient.SqlClient ret = io.vertx.rxjava.sqlclient.SqlClient.newInstance((io.vertx.sqlclient.SqlClient)io.vertx.mysqlclient.MySQLPool.client(vertx.getDelegate(), mySQLConnectOptions, options));
return ret;
}
/**
* Create a client backed by a connection pool to the MySQL databases
. The supplier is called
* to provide the options when a new connection is created by the pool.
* @param databases the databases supplier
* @param options the options for creating the pool
* @return the pooled client
*/
public static io.vertx.rxjava.sqlclient.SqlClient client(java.util.function.Supplier> databases, io.vertx.sqlclient.PoolOptions options) {
io.vertx.rxjava.sqlclient.SqlClient ret = io.vertx.rxjava.sqlclient.SqlClient.newInstance((io.vertx.sqlclient.SqlClient)io.vertx.mysqlclient.MySQLPool.client(databases, options));
return ret;
}
public static MySQLPool newInstance(io.vertx.mysqlclient.MySQLPool arg) {
return arg != null ? new MySQLPool(arg) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy