Class RowIterator<R>

  • All Implemented Interfaces:
    Iterator<R>

    public class RowIterator<R>
    extends Object
    implements 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.

    • Constructor Detail

      • 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 Detail

      • getDelegate

        public io.vertx.sqlclient.RowIterator getDelegate()
      • 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)