io.reactiverse.pgclient.PgPreparedQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactive-pg-client Show documentation
Show all versions of reactive-pg-client Show documentation
The reactive Postgres client
/*
* Copyright (C) 2017 Julien Viet
*
* Licensed 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.pgclient;
import io.reactiverse.pgclient.impl.ArrayTuple;
import io.vertx.codegen.annotations.Fluent;
import io.vertx.codegen.annotations.GenIgnore;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import java.util.List;
import java.util.stream.Collector;
/**
* A prepared query.
*
* @author Julien Viet
*/
@VertxGen
public interface PgPreparedQuery {
/**
* Calls {@link #execute(Tuple, Handler)} with an empty tuple argument.
*/
@Fluent
default PgPreparedQuery execute(Handler> handler) {
return execute(ArrayTuple.EMPTY, handler);
}
/**
* Calls {@link #execute(Tuple, Collector, Handler)} with an empty tuple argument.
*/
@GenIgnore
default PgPreparedQuery execute(Collector collector, Handler>> handler) {
return execute(ArrayTuple.EMPTY, collector, handler);
}
/**
* Create a cursor with the provided {@code arguments}.
*
* @param args the list of arguments
* @return the query
*/
@Fluent
PgPreparedQuery execute(Tuple args, Handler> handler);
/**
* Create a cursor with the provided {@code arguments}.
*
* @param args the list of arguments
* @param collector the collector
* @return the query
*/
@GenIgnore
PgPreparedQuery execute(Tuple args, Collector collector, Handler>> handler);
/**
* @return create a query cursor with a {@code fetch} size and empty arguments
*/
default PgCursor cursor() {
return cursor(ArrayTuple.EMPTY);
}
/**
* Create a cursor with the provided {@code arguments}.
*
* @param args the list of arguments
* @return the query
*/
PgCursor cursor(Tuple args);
/**
* Execute the prepared query with a cursor and createStream the result. The createStream opens a cursor
* with a {@code fetch} size to fetch the results.
*
* Note: this requires to be in a transaction, since cursors require it.
*
* @param fetch the cursor fetch size
* @param args the prepared query arguments
* @return the createStream
*/
PgStream createStream(int fetch, Tuple args);
/**
* Execute a batch.
*
* @param argsList the list of tuple for the batch
* @return the createBatch
*/
@Fluent
PgPreparedQuery batch(List argsList, Handler> handler);
/**
* Execute a batch.
*
* @param argsList the list of tuple for the batch
* @param collector the collector
* @return the createBatch
*/
@GenIgnore
PgPreparedQuery batch(List argsList, Collector collector, Handler>> handler);
/**
* Close the prepared query and release its resources.
*/
void close();
/**
* Like {@link #close()} but notifies the {@code completionHandler} when it's closed.
*/
void close(Handler> completionHandler);
}