/*
 * 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 java.util.Map;
import rx.Observable;
import rx.Single;
import java.util.List;
import io.vertx.mysqlclient.MySQLConnectOptions;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import io.vertx.sqlclient.PoolOptions;

A pool of MySQL connections.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
/** * A pool of MySQL connections. * * <p/> * NOTE: This class has been automatically generated from the {@link io.vertx.mysqlclient.MySQLPool original} non RX-ified interface using Vert.x codegen. */
@io.vertx.lang.rx.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 io.vertx.lang.rx.TypeArg<MySQLPool> __TYPE_ARG = new io.vertx.lang.rx.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 io.vertx.mysqlclient.MySQLPool getDelegate() { return delegate; }
Like pool with a default poolOptions.
Params:
  • connectionUri –
Returns:
/** * Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with a default <code>poolOptions</code>. * @param connectionUri * @return */
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(String connectionUri) { io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance(io.vertx.mysqlclient.MySQLPool.pool(connectionUri)); return ret; }
Like pool with connectOptions build from connectionUri.
Params:
  • connectionUri –
  • poolOptions –
Returns:
/** * Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with <code>connectOptions</code> build from <code>connectionUri</code>. * @param connectionUri * @param poolOptions * @return */
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(String connectionUri, PoolOptions poolOptions) { io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance(io.vertx.mysqlclient.MySQLPool.pool(connectionUri, poolOptions)); return ret; }
Like pool with connectOptions build from connectionUri.
Params:
  • vertx –
  • connectionUri –
  • poolOptions –
Returns:
/** * Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with <code>connectOptions</code> build from <code>connectionUri</code>. * @param vertx * @param connectionUri * @param poolOptions * @return */
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(io.vertx.rxjava.core.Vertx vertx, String connectionUri, PoolOptions poolOptions) { io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance(io.vertx.mysqlclient.MySQLPool.pool(vertx.getDelegate(), connectionUri, poolOptions)); return ret; }
Create a connection pool to the MySQL server configured with the given connectOptions and poolOptions.
Params:
  • connectOptions – the options for the connection
  • poolOptions – the options for creating the pool
Returns:the connection pool
/** * Create a connection pool to the MySQL server configured with the given <code>connectOptions</code> and <code>poolOptions</code>. * @param connectOptions the options for the connection * @param poolOptions the options for creating the pool * @return the connection pool */
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(MySQLConnectOptions connectOptions, PoolOptions poolOptions) { io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance(io.vertx.mysqlclient.MySQLPool.pool(connectOptions, poolOptions)); return ret; }
Like pool with a specific instance.
Params:
  • vertx –
  • connectOptions –
  • poolOptions –
Returns:
/** * Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with a specific instance. * @param vertx * @param connectOptions * @param poolOptions * @return */
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(io.vertx.rxjava.core.Vertx vertx, MySQLConnectOptions connectOptions, PoolOptions poolOptions) { io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance(io.vertx.mysqlclient.MySQLPool.pool(vertx.getDelegate(), connectOptions, poolOptions)); return ret; } public io.vertx.rxjava.mysqlclient.MySQLPool preparedQuery(String sql, Handler<AsyncResult<io.vertx.rxjava.sqlclient.RowSet>> handler) { delegate.preparedQuery(sql, new Handler<AsyncResult<io.vertx.sqlclient.RowSet>>() { public void handle(AsyncResult<io.vertx.sqlclient.RowSet> ar) { if (ar.succeeded()) { handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.sqlclient.RowSet.newInstance(ar.result()))); } else { handler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } public Single<io.vertx.rxjava.sqlclient.RowSet> rxPreparedQuery(String sql) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { preparedQuery(sql, fut); })); } public io.vertx.rxjava.mysqlclient.MySQLPool query(String sql, Handler<AsyncResult<io.vertx.rxjava.sqlclient.RowSet>> handler) { delegate.query(sql, new Handler<AsyncResult<io.vertx.sqlclient.RowSet>>() { public void handle(AsyncResult<io.vertx.sqlclient.RowSet> ar) { if (ar.succeeded()) { handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.sqlclient.RowSet.newInstance(ar.result()))); } else { handler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } public Single<io.vertx.rxjava.sqlclient.RowSet> rxQuery(String sql) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { query(sql, fut); })); } public io.vertx.rxjava.mysqlclient.MySQLPool preparedQuery(String sql, io.vertx.rxjava.sqlclient.Tuple arguments, Handler<AsyncResult<io.vertx.rxjava.sqlclient.RowSet>> handler) { delegate.preparedQuery(sql, arguments.getDelegate(), new Handler<AsyncResult<io.vertx.sqlclient.RowSet>>() { public void handle(AsyncResult<io.vertx.sqlclient.RowSet> ar) { if (ar.succeeded()) { handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.sqlclient.RowSet.newInstance(ar.result()))); } else { handler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } public Single<io.vertx.rxjava.sqlclient.RowSet> rxPreparedQuery(String sql, io.vertx.rxjava.sqlclient.Tuple arguments) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { preparedQuery(sql, arguments, fut); })); } public io.vertx.rxjava.mysqlclient.MySQLPool preparedBatch(String sql, List<io.vertx.rxjava.sqlclient.Tuple> batch, Handler<AsyncResult<io.vertx.rxjava.sqlclient.RowSet>> handler) { delegate.preparedBatch(sql, batch.stream().map(elt -> elt.getDelegate()).collect(java.util.stream.Collectors.toList()), new Handler<AsyncResult<io.vertx.sqlclient.RowSet>>() { public void handle(AsyncResult<io.vertx.sqlclient.RowSet> ar) { if (ar.succeeded()) { handler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.sqlclient.RowSet.newInstance(ar.result()))); } else { handler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } public Single<io.vertx.rxjava.sqlclient.RowSet> rxPreparedBatch(String sql, List<io.vertx.rxjava.sqlclient.Tuple> batch) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { preparedBatch(sql, batch, fut); })); } public static MySQLPool newInstance(io.vertx.mysqlclient.MySQLPool arg) { return arg != null ? new MySQLPool(arg) : null; } }