class io.vertx.ext.asyncsql.impl.AsyncSQLRowStream implements io.vertx.ext.sql.SQLRowStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.ext.asyncsql.impl.AsyncSQLRowStream
  super_class: java.lang.Object
{
  private final com.github.mauricio.async.db.ResultSet rs;
    descriptor: Lcom/github/mauricio/async/db/ResultSet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final scala.collection.Iterator<com.github.mauricio.async.db.RowData> cursor;
    descriptor: Lscala/collection/Iterator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lscala/collection/Iterator<Lcom/github/mauricio/async/db/RowData;>;

  private java.util.List<java.lang.String> columns;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Ljava/lang/String;>;

  private long demand;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private final java.util.concurrent.atomic.AtomicBoolean ended;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private io.vertx.core.Handler<io.vertx.core.json.JsonArray> handler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Lio/vertx/core/json/JsonArray;>;

  private io.vertx.core.Handler<java.lang.Void> endHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  private io.vertx.core.Handler<java.lang.Void> rsClosedHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  void <init>(com.github.mauricio.async.db.QueryResult);
    descriptor: (Lcom/github/mauricio/async/db/QueryResult;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
        start local 1 // com.github.mauricio.async.db.QueryResult qr
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 24
            aload 0 /* this */
            lconst_0
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.demand:J
         2: .line 25
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:(Z)V
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.ended:Ljava/util/concurrent/atomic/AtomicBoolean;
         3: .line 32
            aload 1 /* qr */
            invokevirtual com.github.mauricio.async.db.QueryResult.rows:()Lscala/Option;
            astore 2 /* rows */
        start local 2 // scala.Option rows
         4: .line 33
            aload 2 /* rows */
            invokevirtual scala.Option.isDefined:()Z
            ifeq 8
         5: .line 34
            aload 0 /* this */
            aload 2 /* rows */
            invokevirtual scala.Option.get:()Ljava/lang/Object;
            checkcast com.github.mauricio.async.db.ResultSet
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.rs:Lcom/github/mauricio/async/db/ResultSet;
         6: .line 35
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.rs:Lcom/github/mauricio/async/db/ResultSet;
            invokeinterface com.github.mauricio.async.db.ResultSet.iterator:()Lscala/collection/Iterator;
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.cursor:Lscala/collection/Iterator;
         7: .line 36
            goto 10
         8: .line 37
      StackMap locals: io.vertx.ext.asyncsql.impl.AsyncSQLRowStream com.github.mauricio.async.db.QueryResult scala.Option
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.rs:Lcom/github/mauricio/async/db/ResultSet;
         9: .line 38
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.cursor:Lscala/collection/Iterator;
        10: .line 40
      StackMap locals:
      StackMap stack:
            return
        end local 2 // scala.Option rows
        end local 1 // com.github.mauricio.async.db.QueryResult qr
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;
            0   11     1    qr  Lcom/github/mauricio/async/db/QueryResult;
            4   11     2  rows  Lscala/Option<Lcom/github/mauricio/async/db/ResultSet;>;
    MethodParameters:
      Name  Flags
      qr    

  public int column(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
        start local 1 // java.lang.String name
         0: .line 44
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.rs:Lcom/github/mauricio/async/db/ResultSet;
            ifnonnull 2
         1: .line 45
            new java.lang.IndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            ldc "'"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' not found"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 49
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.columns:()Ljava/util/List;
            aload 1 /* name */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;
            0    3     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.util.List<java.lang.String> columns();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
         0: .line 55
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.columns:Ljava/util/List;
            ifnonnull 4
         1: .line 57
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.rs:Lcom/github/mauricio/async/db/ResultSet;
            ifnonnull 3
         2: .line 58
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            areturn
         3: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.rs:Lcom/github/mauricio/async/db/ResultSet;
            invokeinterface com.github.mauricio.async.db.ResultSet.columnNames:()Lscala/collection/IndexedSeq;
            invokeinterface scala.collection.IndexedSeq.toList:()Lscala/collection/immutable/List;
            invokestatic io.vertx.ext.asyncsql.impl.ScalaUtils.toJavaList:(Lscala/collection/immutable/List;)Ljava/util/List;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.columns:Ljava/util/List;
         4: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.columns:Ljava/util/List;
            areturn
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public io.vertx.ext.sql.SQLRowStream exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
        start local 1 // io.vertx.core.Handler handler
         0: .line 68
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;
            0    1     1  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/ext/sql/SQLRowStream;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.ext.sql.SQLRowStream handler(io.vertx.core.Handler<io.vertx.core.json.JsonArray>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
        start local 1 // io.vertx.core.Handler handler
         0: .line 73
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.handler:Lio/vertx/core/Handler;
         1: .line 75
            aload 0 /* this */
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.resume:()Lio/vertx/ext/sql/SQLRowStream;
            pop
         2: .line 76
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;
            0    3     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/json/JsonArray;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/json/JsonArray;>;)Lio/vertx/ext/sql/SQLRowStream;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.ext.sql.SQLRowStream pause();
    descriptor: ()Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
         0: .line 81
            aload 0 /* this */
            lconst_0
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.demand:J
         1: .line 82
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;

  public synchronized io.vertx.ext.sql.SQLRowStream fetch(long);
    descriptor: (J)Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
        start local 1 // long amount
         0: .line 87
            lload 1 /* amount */
            lconst_0
            lcmp
            ifle 4
         1: .line 88
            aload 0 /* this */
            dup
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.demand:J
            lload 1 /* amount */
            ladd
            dup2_x1
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.demand:J
            lconst_0
            lcmp
            ifge 3
         2: .line 89
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.demand:J
         3: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.nextRow:()V
         4: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // long amount
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;
            0    5     1  amount  J
    MethodParameters:
        Name  Flags
      amount  

  public io.vertx.ext.sql.SQLRowStream resume();
    descriptor: ()Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
         0: .line 98
            aload 0 /* this */
            ldc 9223372036854775807
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.fetch:(J)Lio/vertx/ext/sql/SQLRowStream;
            areturn
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;

  private void nextRow();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
         0: .line 102
            goto 12
         1: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.cursor:Lscala/collection/Iterator;
            invokeinterface scala.collection.Iterator.hasNext:()Z
            ifeq 6
         2: .line 104
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.demand:J
            ldc 9223372036854775807
            lcmp
            ifeq 4
         3: .line 105
            aload 0 /* this */
            dup
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.demand:J
            lconst_1
            lsub
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.demand:J
         4: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.handler:Lio/vertx/core/Handler;
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.cursor:Lscala/collection/Iterator;
            invokeinterface scala.collection.Iterator.next:()Ljava/lang/Object;
            checkcast com.github.mauricio.async.db.RowData
            invokestatic io.vertx.ext.asyncsql.impl.ScalaUtils.rowToJsonArray:(Lcom/github/mauricio/async/db/RowData;)Lio/vertx/core/json/JsonArray;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 108
            goto 12
         6: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.ended:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         7: .line 112
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.rsClosedHandler:Lio/vertx/core/Handler;
            ifnull 10
         8: .line 114
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.rsClosedHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         9: .line 115
            goto 13
        10: .line 117
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/asyncsql/impl/AsyncSQLRowStream.lambda$0(Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.close:(Lio/vertx/core/Handler;)V
        11: .line 123
            goto 13
        12: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.demand:J
            lconst_0
            lcmp
            ifgt 1
        13: .line 126
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;

  public io.vertx.ext.sql.SQLRowStream endHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
        start local 1 // io.vertx.core.Handler handler
         0: .line 130
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.endHandler:Lio/vertx/core/Handler;
         1: .line 132
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.ended:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            iconst_0
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 3
         2: .line 134
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.endHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;
            0    4     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/ext/sql/SQLRowStream;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.ext.sql.SQLRowStream resultSetClosedHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
        start local 1 // io.vertx.core.Handler handler
         0: .line 141
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.rsClosedHandler:Lio/vertx/core/Handler;
         1: .line 143
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.ended:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            iconst_0
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 3
         2: .line 145
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.rsClosedHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;
            0    4     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/ext/sql/SQLRowStream;
    MethodParameters:
         Name  Flags
      handler  

  public void moreResults();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
         0: .line 153
            return
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
         0: .line 157
            aload 0 /* this */
            aconst_null
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.close:(Lio/vertx/core/Handler;)V
         1: .line 158
            return
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;

  public void close(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
        start local 1 // io.vertx.core.Handler handler
         0: .line 163
            aload 0 /* this */
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.pause:()Lio/vertx/ext/sql/SQLRowStream;
            pop
         1: .line 165
            aload 1 /* handler */
            ifnull 3
         2: .line 166
            aload 1 /* handler */
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 168
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;
            0    4     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.streams.ReadStream pause();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.pause:()Lio/vertx/ext/sql/SQLRowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream handler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.Handler
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream endHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream resume();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.resume:()Lio/vertx/ext/sql/SQLRowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream fetch(long);
    descriptor: (J)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.fetch:(J)Lio/vertx/ext/sql/SQLRowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.StreamBase exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/StreamBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void lambda$0(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
        start local 1 // io.vertx.core.AsyncResult c
         0: .line 118
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.endHandler:Lio/vertx/core/Handler;
            ifnull 2
         1: .line 119
            aload 0 /* this */
            getfield io.vertx.ext.asyncsql.impl.AsyncSQLRowStream.endHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 121
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult c
        end local 0 // io.vertx.ext.asyncsql.impl.AsyncSQLRowStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/asyncsql/impl/AsyncSQLRowStream;
            0    3     1     c  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
}
SourceFile: "AsyncSQLRowStream.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles