/*
 * 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.jdbcclient;

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;

JDBCPool is the interface that allows using the Sql Client API with plain JDBC.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
/** * JDBCPool is the interface that allows using the Sql Client API with plain JDBC. * * <p/> * NOTE: This class has been automatically generated from the {@link io.vertx.jdbcclient.JDBCPool original} non RX-ified interface using Vert.x codegen. */
@RxGen(io.vertx.jdbcclient.JDBCPool.class) public class JDBCPool 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; JDBCPool that = (JDBCPool) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final TypeArg<JDBCPool> __TYPE_ARG = new TypeArg<>( obj -> new JDBCPool((io.vertx.jdbcclient.JDBCPool) obj), JDBCPool::getDelegate ); private final io.vertx.jdbcclient.JDBCPool delegate; public JDBCPool(io.vertx.jdbcclient.JDBCPool delegate) { super(delegate); this.delegate = delegate; } public JDBCPool(Object delegate) { super((io.vertx.jdbcclient.JDBCPool)delegate); this.delegate = (io.vertx.jdbcclient.JDBCPool)delegate; } public io.vertx.jdbcclient.JDBCPool getDelegate() { return delegate; }
Create a JDBC pool which maintains its own data source.
Params:
  • vertx – the Vert.x instance
  • connectOptions – the options to configure the connection
  • poolOptions – the connection pool options
Returns:the client
/** * Create a JDBC pool which maintains its own data source. * @param vertx the Vert.x instance * @param connectOptions the options to configure the connection * @param poolOptions the connection pool options * @return the client */
public static io.vertx.rxjava.jdbcclient.JDBCPool pool(io.vertx.rxjava.core.Vertx vertx, io.vertx.jdbcclient.JDBCConnectOptions connectOptions, io.vertx.sqlclient.PoolOptions poolOptions) { io.vertx.rxjava.jdbcclient.JDBCPool ret = io.vertx.rxjava.jdbcclient.JDBCPool.newInstance((io.vertx.jdbcclient.JDBCPool)io.vertx.jdbcclient.JDBCPool.pool(vertx.getDelegate(), connectOptions, poolOptions)); return ret; }
Create a JDBC pool which maintains its own data source.
Params:
  • vertx – the Vert.x instance
  • config – the options to configure the client using the same format as JDBCClient
Returns:the client
/** * Create a JDBC pool which maintains its own data source. * @param vertx the Vert.x instance * @param config the options to configure the client using the same format as {@link io.vertx.rxjava.ext.jdbc.JDBCClient} * @return the client */
public static io.vertx.rxjava.jdbcclient.JDBCPool pool(io.vertx.rxjava.core.Vertx vertx, JsonObject config) { io.vertx.rxjava.jdbcclient.JDBCPool ret = io.vertx.rxjava.jdbcclient.JDBCPool.newInstance((io.vertx.jdbcclient.JDBCPool)io.vertx.jdbcclient.JDBCPool.pool(vertx.getDelegate(), config)); return ret; }
The property to be used to retrieve the generated keys
/** * The property to be used to retrieve the generated keys */
public static final io.vertx.rxjava.sqlclient.PropertyKind<io.vertx.rxjava.sqlclient.Row> GENERATED_KEYS = io.vertx.rxjava.sqlclient.PropertyKind.newInstance((io.vertx.sqlclient.PropertyKind)io.vertx.jdbcclient.JDBCPool.GENERATED_KEYS, new TypeArg<io.vertx.rxjava.sqlclient.Row>(o0 -> io.vertx.rxjava.sqlclient.Row.newInstance((io.vertx.sqlclient.Row)o0), o0 -> o0.getDelegate()));
The property to be used to retrieve the output of the callable statement
/** * The property to be used to retrieve the output of the callable statement */
public static final io.vertx.rxjava.sqlclient.PropertyKind<Boolean> OUTPUT = io.vertx.rxjava.sqlclient.PropertyKind.newInstance((io.vertx.sqlclient.PropertyKind)io.vertx.jdbcclient.JDBCPool.OUTPUT, TypeArg.unknown()); public static JDBCPool newInstance(io.vertx.jdbcclient.JDBCPool arg) { return arg != null ? new JDBCPool(arg) : null; } }