Package io.vertx.rxjava3.sqlclient
Class RowSet<R>
- java.lang.Object
-
- io.vertx.rxjava3.sqlclient.SqlResult<RowSet<R>>
-
- io.vertx.rxjava3.sqlclient.RowSet<R>
-
- All Implemented Interfaces:
Iterable<R>
public class RowSet<R> extends SqlResult<RowSet<R>> implements Iterable<R>
The execution result of the row set of a query provided as
, commonly used as aRowSet
. Using a collector query might provide a different result.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<RowSet>
__TYPE_ARG
io.vertx.lang.rx.TypeArg<R>
__typeArg_0
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
RowSet
getDelegate()
int
hashCode()
RowIterator<R>
iterator()
static <R> RowSet<R>
newInstance(RowSet arg)
static <R> RowSet<R>
newInstance(RowSet arg, io.vertx.lang.rx.TypeArg<R> __typeArg_R)
RowSet<R>
next()
Return the next available result ornull
, e.g for a simple query that executed multiple queries or for a batch result.String
toString()
RowSet<R>
value()
-
Methods inherited from class io.vertx.rxjava3.sqlclient.SqlResult
columnDescriptors, columnsNames, newInstance, newInstance, property, rowCount, size
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
getDelegate
public RowSet getDelegate()
- Overrides:
getDelegate
in classSqlResult<RowSet<R>>
-
iterator
public RowIterator<R> iterator()
-
next
public RowSet<R> next()
Description copied from class:SqlResult
Return the next available result ornull
, e.g for a simple query that executed multiple queries or for a batch result.
-
-