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 a default poolOptions
.
* @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)io.vertx.mysqlclient.MySQLPool.pool(connectionUri));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with connectOptions
build from connectionUri
.
* @param connectionUri
* @param poolOptions
* @return
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(String connectionUri, io.vertx.sqlclient.PoolOptions poolOptions) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(connectionUri, poolOptions));
return ret;
}
/**
* Like {@link io.vertx.rxjava.mysqlclient.MySQLPool#pool} with a default poolOptions
..
* @param vertx
* @param connectionUri
* @return
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(io.vertx.rxjava.core.Vertx vertx, 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 connectOptions
build from connectionUri
.
* @param vertx
* @param connectionUri
* @param poolOptions
* @return
*/
public static io.vertx.rxjava.mysqlclient.MySQLPool pool(io.vertx.rxjava.core.Vertx vertx, String connectionUri, io.vertx.sqlclient.PoolOptions poolOptions) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)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
.
* @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(io.vertx.mysqlclient.MySQLConnectOptions connectOptions, io.vertx.sqlclient.PoolOptions poolOptions) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(connectOptions, poolOptions));
return ret;
}
/**
* 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, io.vertx.mysqlclient.MySQLConnectOptions connectOptions, io.vertx.sqlclient.PoolOptions poolOptions) {
io.vertx.rxjava.mysqlclient.MySQLPool ret = io.vertx.rxjava.mysqlclient.MySQLPool.newInstance((io.vertx.mysqlclient.MySQLPool)io.vertx.mysqlclient.MySQLPool.pool(vertx.getDelegate(), connectOptions, poolOptions));
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