Package io.vertx.rxjava3.sqlclient
Class PreparedQuery<T>
- java.lang.Object
- 
- io.vertx.rxjava3.sqlclient.Query<T>
- 
- io.vertx.rxjava3.sqlclient.PreparedQuery<T>
 
 
- 
- All Implemented Interfaces:
- io.vertx.lang.rx.RxDelegate
 
 public class PreparedQuery<T> extends Query<T> implements io.vertx.lang.rx.RxDelegate A query for a prepared statement allowing parameterized execution of the query, this query will use a prepared statement.NOTE: This class has been automatically generated from the originalnon RX-ified interface using Vert.x codegen.
- 
- 
Field SummaryFields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<PreparedQuery>__TYPE_ARGio.vertx.lang.rx.TypeArg<T>__typeArg_0
 - 
Constructor SummaryConstructors Constructor Description PreparedQuery(PreparedQuery delegate)PreparedQuery(Object delegate, io.vertx.lang.rx.TypeArg<T> typeArg_0)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Single<T>execute()Execute the query.Single<T>execute(Tuple tuple)Execute the query.Single<T>executeBatch(List<Tuple> batch)Execute the query with a batch of tuples.PreparedQuerygetDelegate()inthashCode()<U> PreparedQuery<RowSet<U>>mapping(Function<Row,U> mapper)static <T> PreparedQuery<T>newInstance(PreparedQuery arg)static <T> PreparedQuery<T>newInstance(PreparedQuery arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)Single<T>rxExecute()Execute the query.Single<T>rxExecute(Tuple tuple)Execute the query.Single<T>rxExecuteBatch(List<Tuple> batch)Execute the query with a batch of tuples.StringtoString()- 
Methods inherited from class io.vertx.rxjava3.sqlclient.QuerynewInstance, newInstance
 
- 
 
- 
- 
- 
Field Detail- 
__TYPE_ARGpublic static final io.vertx.lang.rx.TypeArg<PreparedQuery> __TYPE_ARG 
 - 
__typeArg_0public final io.vertx.lang.rx.TypeArg<T> __typeArg_0 
 
- 
 - 
Constructor Detail- 
PreparedQuerypublic PreparedQuery(PreparedQuery delegate) 
 
- 
 - 
Method Detail- 
getDelegatepublic PreparedQuery getDelegate() - Specified by:
- getDelegatein interface- io.vertx.lang.rx.RxDelegate
- Overrides:
- getDelegatein class- Query<T>
 
 - 
executepublic Single<T> execute(Tuple tuple) Execute the query.- Parameters:
- tuple-
- Returns:
- a future notified with the result
 
 - 
rxExecutepublic Single<T> rxExecute(Tuple tuple) Execute the query.- Parameters:
- tuple-
- Returns:
- a future notified with the result
 
 - 
executeBatchpublic Single<T> executeBatch(List<Tuple> batch) Execute the query with a batch of tuples.- Parameters:
- batch- the batch of tuples
- Returns:
- a future notified with the result
 
 - 
rxExecuteBatchpublic Single<T> rxExecuteBatch(List<Tuple> batch) Execute the query with a batch of tuples.- Parameters:
- batch- the batch of tuples
- Returns:
- a future notified with the result
 
 - 
mappingpublic <U> PreparedQuery<RowSet<U>> mapping(Function<Row,U> mapper) 
 - 
newInstancepublic static <T> PreparedQuery<T> newInstance(PreparedQuery arg) 
 - 
newInstancepublic static <T> PreparedQuery<T> newInstance(PreparedQuery arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) 
 
- 
 
-