/*
 * 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.reactiverse.reactivex.pgclient;

import java.util.Map;
import io.reactivex.Observable;
import io.reactivex.Flowable;
import io.reactivex.Single;
import io.reactivex.Completable;
import io.reactivex.Maybe;
import java.util.List;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;

A transaction that allows to control the transaction and receive events.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
/** * A transaction that allows to control the transaction and receive events. * * <p/> * NOTE: This class has been automatically generated from the {@link io.reactiverse.pgclient.PgTransaction original} non RX-ified interface using Vert.x codegen. */
@io.vertx.lang.rx.RxGen(io.reactiverse.pgclient.PgTransaction.class) public class PgTransaction extends io.reactiverse.reactivex.pgclient.PgClient { @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; PgTransaction that = (PgTransaction) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final io.vertx.lang.rx.TypeArg<PgTransaction> __TYPE_ARG = new io.vertx.lang.rx.TypeArg<>( obj -> new PgTransaction((io.reactiverse.pgclient.PgTransaction) obj), PgTransaction::getDelegate ); private final io.reactiverse.pgclient.PgTransaction delegate; public PgTransaction(io.reactiverse.pgclient.PgTransaction delegate) { super(delegate); this.delegate = delegate; } public io.reactiverse.pgclient.PgTransaction getDelegate() { return delegate; }
Create a prepared query.
Params:
  • sql – the sql
  • handler – the handler notified with the prepared query asynchronously
Returns:
/** * Create a prepared query. * @param sql the sql * @param handler the handler notified with the prepared query asynchronously * @return */
public io.reactiverse.reactivex.pgclient.PgTransaction prepare(String sql, Handler<AsyncResult<io.reactiverse.reactivex.pgclient.PgPreparedQuery>> handler) { delegate.prepare(sql, new Handler<AsyncResult<io.reactiverse.pgclient.PgPreparedQuery>>() { public void handle(AsyncResult<io.reactiverse.pgclient.PgPreparedQuery> ar) { if (ar.succeeded()) { handler.handle(io.vertx.core.Future.succeededFuture(io.reactiverse.reactivex.pgclient.PgPreparedQuery.newInstance(ar.result()))); } else { handler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; }
Create a prepared query.
Params:
  • sql – the sql
Returns:
/** * Create a prepared query. * @param sql the sql * @return */
public Single<io.reactiverse.reactivex.pgclient.PgPreparedQuery> rxPrepare(String sql) { return io.vertx.reactivex.impl.AsyncResultSingle.toSingle(handler -> { prepare(sql, handler); }); }
Commit the current transaction.
/** * Commit the current transaction. */
public void commit() { delegate.commit(); }
Like commit with an handler to be notified when the transaction commit has completed
Params:
  • handler –
/** * Like {@link io.reactiverse.reactivex.pgclient.PgTransaction#commit} with an handler to be notified when the transaction commit has completed * @param handler */
public void commit(Handler<AsyncResult<Void>> handler) { delegate.commit(handler); }
Like commit with an handler to be notified when the transaction commit has completed
Returns:
/** * Like {@link io.reactiverse.reactivex.pgclient.PgTransaction#commit} with an handler to be notified when the transaction commit has completed * @return */
public Completable rxCommit() { return io.vertx.reactivex.impl.AsyncResultCompletable.toCompletable(handler -> { commit(handler); }); }
Rollback the current transaction.
/** * Rollback the current transaction. */
public void rollback() { delegate.rollback(); }
Like rollback with an handler to be notified when the transaction rollback has completed
Params:
  • handler –
/** * Like {@link io.reactiverse.reactivex.pgclient.PgTransaction#rollback} with an handler to be notified when the transaction rollback has completed * @param handler */
public void rollback(Handler<AsyncResult<Void>> handler) { delegate.rollback(handler); }
Like rollback with an handler to be notified when the transaction rollback has completed
Returns:
/** * Like {@link io.reactiverse.reactivex.pgclient.PgTransaction#rollback} with an handler to be notified when the transaction rollback has completed * @return */
public Completable rxRollback() { return io.vertx.reactivex.impl.AsyncResultCompletable.toCompletable(handler -> { rollback(handler); }); }
Set an handler to be called when the transaction is aborted.
Params:
  • handler – the handler
Returns:
/** * Set an handler to be called when the transaction is aborted. * @param handler the handler * @return */
public io.reactiverse.reactivex.pgclient.PgTransaction abortHandler(Handler<Void> handler) { delegate.abortHandler(handler); return this; } public io.reactiverse.reactivex.pgclient.PgTransaction query(String sql, Handler<AsyncResult<io.reactiverse.reactivex.pgclient.PgRowSet>> handler) { delegate.query(sql, new Handler<AsyncResult<io.reactiverse.pgclient.PgRowSet>>() { public void handle(AsyncResult<io.reactiverse.pgclient.PgRowSet> ar) { if (ar.succeeded()) { handler.handle(io.vertx.core.Future.succeededFuture(io.reactiverse.reactivex.pgclient.PgRowSet.newInstance(ar.result()))); } else { handler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } public Single<io.reactiverse.reactivex.pgclient.PgRowSet> rxQuery(String sql) { return io.vertx.reactivex.impl.AsyncResultSingle.toSingle(handler -> { query(sql, handler); }); } public io.reactiverse.reactivex.pgclient.PgTransaction preparedQuery(String sql, Handler<AsyncResult<io.reactiverse.reactivex.pgclient.PgRowSet>> handler) { delegate.preparedQuery(sql, new Handler<AsyncResult<io.reactiverse.pgclient.PgRowSet>>() { public void handle(AsyncResult<io.reactiverse.pgclient.PgRowSet> ar) { if (ar.succeeded()) { handler.handle(io.vertx.core.Future.succeededFuture(io.reactiverse.reactivex.pgclient.PgRowSet.newInstance(ar.result()))); } else { handler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } public Single<io.reactiverse.reactivex.pgclient.PgRowSet> rxPreparedQuery(String sql) { return io.vertx.reactivex.impl.AsyncResultSingle.toSingle(handler -> { preparedQuery(sql, handler); }); } public io.reactiverse.reactivex.pgclient.PgTransaction preparedQuery(String sql, io.reactiverse.reactivex.pgclient.Tuple arguments, Handler<AsyncResult<io.reactiverse.reactivex.pgclient.PgRowSet>> handler) { delegate.preparedQuery(sql, arguments.getDelegate(), new Handler<AsyncResult<io.reactiverse.pgclient.PgRowSet>>() { public void handle(AsyncResult<io.reactiverse.pgclient.PgRowSet> ar) { if (ar.succeeded()) { handler.handle(io.vertx.core.Future.succeededFuture(io.reactiverse.reactivex.pgclient.PgRowSet.newInstance(ar.result()))); } else { handler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } public Single<io.reactiverse.reactivex.pgclient.PgRowSet> rxPreparedQuery(String sql, io.reactiverse.reactivex.pgclient.Tuple arguments) { return io.vertx.reactivex.impl.AsyncResultSingle.toSingle(handler -> { preparedQuery(sql, arguments, handler); }); } public io.reactiverse.reactivex.pgclient.PgTransaction preparedBatch(String sql, List<io.reactiverse.reactivex.pgclient.Tuple> batch, Handler<AsyncResult<io.reactiverse.reactivex.pgclient.PgRowSet>> handler) { delegate.preparedBatch(sql, batch.stream().map(elt -> elt.getDelegate()).collect(java.util.stream.Collectors.toList()), new Handler<AsyncResult<io.reactiverse.pgclient.PgRowSet>>() { public void handle(AsyncResult<io.reactiverse.pgclient.PgRowSet> ar) { if (ar.succeeded()) { handler.handle(io.vertx.core.Future.succeededFuture(io.reactiverse.reactivex.pgclient.PgRowSet.newInstance(ar.result()))); } else { handler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } public Single<io.reactiverse.reactivex.pgclient.PgRowSet> rxPreparedBatch(String sql, List<io.reactiverse.reactivex.pgclient.Tuple> batch) { return io.vertx.reactivex.impl.AsyncResultSingle.toSingle(handler -> { preparedBatch(sql, batch, handler); }); }
Rollback the transaction and release the associated resources.
/** * Rollback the transaction and release the associated resources. */
public void close() { delegate.close(); } public static PgTransaction newInstance(io.reactiverse.pgclient.PgTransaction arg) { return arg != null ? new PgTransaction(arg) : null; } }