Class RowIterator<R>

java.lang.Object
io.vertx.mutiny.sqlclient.RowIterator<R>
All Implemented Interfaces:
MutinyDelegate, Iterator<R>

public class RowIterator<R> extends Object implements MutinyDelegate, Iterator<R>
An iterator for processing rows.

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

  • Field Details

  • Constructor Details

    • RowIterator

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

      public RowIterator(Object delegate, TypeArg<R> typeArg_0)
    • RowIterator

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

    • getDelegate

      public io.vertx.sqlclient.RowIterator getDelegate()
      Specified by:
      getDelegate in interface MutinyDelegate
      Returns:
      the delegate used by this Mutiny object of generated type
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toMulti

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

      public boolean hasNext()
      Specified by:
      hasNext in interface Iterator<R>
    • next

      public R next()
      Specified by:
      next in interface Iterator<R>
    • newInstance

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

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