Uses of Interface
io.vertx.sqlclient.SqlResult
-
Packages that use SqlResult Package Description io.vertx.reactivex.sqlclient io.vertx.rxjava3.sqlclient io.vertx.sqlclient io.vertx.sqlclient.templates -
-
Uses of SqlResult in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return SqlResult Modifier and Type Method Description SqlResult
SqlResult. getDelegate()
Methods in io.vertx.reactivex.sqlclient with parameters of type SqlResult Modifier and Type Method Description static <T> SqlResult<T>
SqlResult. newInstance(SqlResult arg)
static <T> SqlResult<T>
SqlResult. newInstance(SqlResult arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
Constructors in io.vertx.reactivex.sqlclient with parameters of type SqlResult Constructor Description SqlResult(SqlResult delegate)
-
Uses of SqlResult in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return SqlResult Modifier and Type Method Description SqlResult
SqlResult. getDelegate()
Methods in io.vertx.rxjava3.sqlclient with parameters of type SqlResult Modifier and Type Method Description static <T> SqlResult<T>
SqlResult. newInstance(SqlResult arg)
static <T> SqlResult<T>
SqlResult. newInstance(SqlResult arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
Constructors in io.vertx.rxjava3.sqlclient with parameters of type SqlResult Constructor Description SqlResult(SqlResult delegate)
-
Uses of SqlResult in io.vertx.sqlclient
Subinterfaces of SqlResult in io.vertx.sqlclient Modifier and Type Interface Description interface
RowSet<R>
The execution result of the row set of a query provided as<R>
, commonly used as aRowSet<Row>
.Methods in io.vertx.sqlclient that return SqlResult Modifier and Type Method Description SqlResult<T>
SqlResult. next()
Return the next available result ornull
, e.g for a simple query that executed multiple queries or for a batch result.Methods in io.vertx.sqlclient that return types with arguments of type SqlResult Modifier and Type Method Description <R> PreparedQuery<SqlResult<R>>
PreparedQuery. collecting(java.util.stream.Collector<Row,?,R> collector)
Use the specifiedcollector
for collecting the query result to<R>
.<R> Query<SqlResult<R>>
Query. collecting(java.util.stream.Collector<Row,?,R> collector)
Use the specifiedcollector
for collecting the query result to<R>
. -
Uses of SqlResult in io.vertx.sqlclient.templates
Methods in io.vertx.sqlclient.templates that return types with arguments of type SqlResult Modifier and Type Method Description <U> SqlTemplate<I,SqlResult<U>>
SqlTemplate. collecting(java.util.stream.Collector<Row,?,U> collector)
Set a collector that will process the output and produce a custom result.static SqlTemplate<Map<String,Object>,SqlResult<Void>>
SqlTemplate. forUpdate(SqlClient client, String template)
Create an SQL template for query purpose consuming map parameters and returning void.
-