java.lang.Object
io.vertx.mutiny.sqlclient.SqlResult<RowSet<R>>
io.vertx.mutiny.sqlclient.RowSet<R>
All Implemented Interfaces:
io.smallrye.mutiny.vertx.MutinyDelegate, Iterable<R>

public class RowSet<R> extends SqlResult<RowSet<R>> implements io.smallrye.mutiny.vertx.MutinyDelegate, Iterable<R>
The execution result of the row set of a query provided as , commonly used as a RowSet. Using a collector query might provide a different result.

NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final io.smallrye.mutiny.vertx.TypeArg<RowSet> __TYPE_ARG
    • __typeArg_0

      public final io.smallrye.mutiny.vertx.TypeArg<R> __typeArg_0
  • Constructor Details

    • RowSet

      public RowSet(io.vertx.sqlclient.RowSet delegate)
    • RowSet

      public RowSet(Object delegate, io.smallrye.mutiny.vertx.TypeArg<R> typeArg_0)
    • RowSet

      public RowSet(io.vertx.sqlclient.RowSet delegate, io.smallrye.mutiny.vertx.TypeArg<R> typeArg_0)
  • Method Details

    • getDelegate

      public io.vertx.sqlclient.RowSet getDelegate()
      Specified by:
      getDelegate in interface io.smallrye.mutiny.vertx.MutinyDelegate
      Overrides:
      getDelegate in class SqlResult<RowSet<R>>
    • toString

      public String toString()
      Overrides:
      toString in class SqlResult<RowSet<R>>
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class SqlResult<RowSet<R>>
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class SqlResult<RowSet<R>>
    • toMulti

      @CheckReturnValue public io.smallrye.mutiny.Multi<R> toMulti()
    • value

      public RowSet<R> value()
      Overrides:
      value in class SqlResult<RowSet<R>>
      Returns:
      the result value
    • iterator

      public RowIterator<R> iterator()
      Specified by:
      iterator in interface Iterable<R>
    • next

      public RowSet<R> next()
      Overrides:
      next in class SqlResult<RowSet<R>>
      Returns:
      the next available result or null if none is available
    • stream

      public Stream<R> stream()
    • newInstance

      public static <R> RowSet<R> newInstance(io.vertx.sqlclient.RowSet arg)
    • newInstance

      public static <R> RowSet<R> newInstance(io.vertx.sqlclient.RowSet arg, io.smallrye.mutiny.vertx.TypeArg<R> __typeArg_R)