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

import java.util.Map;
import rx.Observable;
import rx.Single;
import java.util.List;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;

Defines the client operations with a database server.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
/** * Defines the client operations with a database server. * * <p/> * NOTE: This class has been automatically generated from the {@link io.vertx.sqlclient.SqlClient original} non RX-ified interface using Vert.x codegen. */
@io.vertx.lang.rx.RxGen(io.vertx.sqlclient.SqlClient.class) public class SqlClient { @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; SqlClient that = (SqlClient) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final io.vertx.lang.rx.TypeArg<SqlClient> __TYPE_ARG = new io.vertx.lang.rx.TypeArg<>( obj -> new SqlClient((io.vertx.sqlclient.SqlClient) obj), SqlClient::getDelegate ); private final io.vertx.sqlclient.SqlClient delegate; public SqlClient(io.vertx.sqlclient.SqlClient delegate) { this.delegate = delegate; } public io.vertx.sqlclient.SqlClient getDelegate() { return delegate; }
Execute a simple query.
Params:
  • sql – the query SQL
  • handler – the handler notified with the execution result
Returns:a reference to this, so the API can be used fluently
/** * Execute a simple query. * @param sql the query SQL * @param handler the handler notified with the execution result * @return a reference to this, so the API can be used fluently */
public io.vertx.rxjava.sqlclient.SqlClient 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; }
Execute a simple query.
Params:
  • sql – the query SQL
Returns:a reference to this, so the API can be used fluently
/** * Execute a simple query. * @param sql the query SQL * @return a reference to this, so the API can be used fluently */
public Single<io.vertx.rxjava.sqlclient.RowSet> rxQuery(String sql) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { query(sql, fut); })); }
Prepare and execute a query.
Params:
  • sql – the prepared query SQL
  • handler – the handler notified with the execution result
Returns:a reference to this, so the API can be used fluently
/** * Prepare and execute a query. * @param sql the prepared query SQL * @param handler the handler notified with the execution result * @return a reference to this, so the API can be used fluently */
public io.vertx.rxjava.sqlclient.SqlClient 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; }
Prepare and execute a query.
Params:
  • sql – the prepared query SQL
Returns:a reference to this, so the API can be used fluently
/** * Prepare and execute a query. * @param sql the prepared query SQL * @return a reference to this, so the API can be used fluently */
public Single<io.vertx.rxjava.sqlclient.RowSet> rxPreparedQuery(String sql) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { preparedQuery(sql, fut); })); }
Prepare and execute a query.
Params:
  • sql – the prepared query SQL
  • arguments – the list of arguments
  • handler – the handler notified with the execution result
Returns:a reference to this, so the API can be used fluently
/** * Prepare and execute a query. * @param sql the prepared query SQL * @param arguments the list of arguments * @param handler the handler notified with the execution result * @return a reference to this, so the API can be used fluently */
public io.vertx.rxjava.sqlclient.SqlClient 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; }
Prepare and execute a query.
Params:
  • sql – the prepared query SQL
  • arguments – the list of arguments
Returns:a reference to this, so the API can be used fluently
/** * Prepare and execute a query. * @param sql the prepared query SQL * @param arguments the list of arguments * @return a reference to this, so the API can be used fluently */
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); })); }
Prepare and execute a createBatch.
Params:
  • sql – the prepared query SQL
  • batch – the batch of tuples
  • handler – the handler notified with the execution result
Returns:a reference to this, so the API can be used fluently
/** * Prepare and execute a createBatch. * @param sql the prepared query SQL * @param batch the batch of tuples * @param handler the handler notified with the execution result * @return a reference to this, so the API can be used fluently */
public io.vertx.rxjava.sqlclient.SqlClient 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; }
Prepare and execute a createBatch.
Params:
  • sql – the prepared query SQL
  • batch – the batch of tuples
Returns:a reference to this, so the API can be used fluently
/** * Prepare and execute a createBatch. * @param sql the prepared query SQL * @param batch the batch of tuples * @return a reference to this, so the API can be used fluently */
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); })); }
Close the client and release the associated resources.
/** * Close the client and release the associated resources. */
public void close() { delegate.close(); } public static SqlClient newInstance(io.vertx.sqlclient.SqlClient arg) { return arg != null ? new SqlClient(arg) : null; } }