Package io.vertx.rxjava3.sqlclient
Class PreparedQuery<T>
- java.lang.Object
-
- io.vertx.rxjava3.sqlclient.Query<T>
-
- io.vertx.rxjava3.sqlclient.PreparedQuery<T>
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<PreparedQuery>__TYPE_ARGTypeArg<T>__typeArg_0
-
Constructor Summary
Constructors Constructor Description PreparedQuery(PreparedQuery delegate)PreparedQuery(Object delegate, TypeArg<T> typeArg_0)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)io.reactivex.rxjava3.core.Single<T>execute()Execute the query.io.reactivex.rxjava3.core.Single<T>execute(Tuple tuple)Execute the query.io.reactivex.rxjava3.core.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, TypeArg<T> __typeArg_T)io.reactivex.rxjava3.core.Single<T>rxExecute()Execute the query.io.reactivex.rxjava3.core.Single<T>rxExecute(Tuple tuple)Execute the query.io.reactivex.rxjava3.core.Single<T>rxExecuteBatch(List<Tuple> batch)Execute the query with a batch of tuples.StringtoString()-
Methods inherited from class io.vertx.rxjava3.sqlclient.Query
newInstance, newInstance
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<PreparedQuery> __TYPE_ARG
-
-
Constructor Detail
-
PreparedQuery
public PreparedQuery(PreparedQuery delegate)
-
-
Method Detail
-
getDelegate
public PreparedQuery getDelegate()
- Overrides:
getDelegatein classQuery<T>
-
execute
public io.reactivex.rxjava3.core.Single<T> execute()
Execute the query.
-
rxExecute
public io.reactivex.rxjava3.core.Single<T> rxExecute()
Execute the query.
-
execute
public io.reactivex.rxjava3.core.Single<T> execute(Tuple tuple)
Execute the query.- Parameters:
tuple-- Returns:
-
rxExecute
public io.reactivex.rxjava3.core.Single<T> rxExecute(Tuple tuple)
Execute the query.- Parameters:
tuple-- Returns:
-
executeBatch
public io.reactivex.rxjava3.core.Single<T> executeBatch(List<Tuple> batch)
Execute the query with a batch of tuples.- Parameters:
batch- the batch of tuples- Returns:
-
rxExecuteBatch
public io.reactivex.rxjava3.core.Single<T> rxExecuteBatch(List<Tuple> batch)
Execute the query with a batch of tuples.- Parameters:
batch- the batch of tuples- Returns:
-
mapping
public <U> PreparedQuery<RowSet<U>> mapping(Function<Row,U> mapper)
-
newInstance
public static <T> PreparedQuery<T> newInstance(PreparedQuery arg)
-
newInstance
public static <T> PreparedQuery<T> newInstance(PreparedQuery arg, TypeArg<T> __typeArg_T)
-
-