public class io.vertx.sqlclient.impl.RowStreamImpl implements io.vertx.sqlclient.impl.RowStreamInternal, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.RowSet<io.vertx.sqlclient.Row>>>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.sqlclient.impl.RowStreamImpl
  super_class: java.lang.Object
{
  private final io.vertx.sqlclient.impl.PreparedStatementImpl ps;
    descriptor: Lio/vertx/sqlclient/impl/PreparedStatementImpl;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.impl.ContextInternal context;
    descriptor: Lio/vertx/core/impl/ContextInternal;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int fetch;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.sqlclient.Tuple params;
    descriptor: Lio/vertx/sqlclient/Tuple;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  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<io.vertx.sqlclient.Row> rowHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Lio/vertx/sqlclient/Row;>;

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

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

  private boolean emitting;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.sqlclient.Cursor cursor;
    descriptor: Lio/vertx/sqlclient/Cursor;
    flags: (0x0002) ACC_PRIVATE

  private boolean readInProgress;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.util.Iterator<io.vertx.sqlclient.Row> result;
    descriptor: Ljava/util/Iterator;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Iterator<Lio/vertx/sqlclient/Row;>;

  void <init>(io.vertx.sqlclient.impl.PreparedStatementImpl, io.vertx.core.impl.ContextInternal, int, io.vertx.sqlclient.Tuple);
    descriptor: (Lio/vertx/sqlclient/impl/PreparedStatementImpl;Lio/vertx/core/impl/ContextInternal;ILio/vertx/sqlclient/Tuple;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
        start local 1 // io.vertx.sqlclient.impl.PreparedStatementImpl ps
        start local 2 // io.vertx.core.impl.ContextInternal context
        start local 3 // int fetch
        start local 4 // io.vertx.sqlclient.Tuple params
         0: .line 49
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 50
            aload 0 /* this */
            aload 1 /* ps */
            putfield io.vertx.sqlclient.impl.RowStreamImpl.ps:Lio/vertx/sqlclient/impl/PreparedStatementImpl;
         2: .line 51
            aload 0 /* this */
            aload 2 /* context */
            putfield io.vertx.sqlclient.impl.RowStreamImpl.context:Lio/vertx/core/impl/ContextInternal;
         3: .line 52
            aload 0 /* this */
            iload 3 /* fetch */
            putfield io.vertx.sqlclient.impl.RowStreamImpl.fetch:I
         4: .line 53
            aload 0 /* this */
            aload 4 /* params */
            putfield io.vertx.sqlclient.impl.RowStreamImpl.params:Lio/vertx/sqlclient/Tuple;
         5: .line 54
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.sqlclient.impl.RowStreamImpl.demand:J
         6: .line 55
            return
        end local 4 // io.vertx.sqlclient.Tuple params
        end local 3 // int fetch
        end local 2 // io.vertx.core.impl.ContextInternal context
        end local 1 // io.vertx.sqlclient.impl.PreparedStatementImpl ps
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/sqlclient/impl/RowStreamImpl;
            0    7     1       ps  Lio/vertx/sqlclient/impl/PreparedStatementImpl;
            0    7     2  context  Lio/vertx/core/impl/ContextInternal;
            0    7     3    fetch  I
            0    7     4   params  Lio/vertx/sqlclient/Tuple;
    MethodParameters:
         Name  Flags
      ps       
      context  
      fetch    
      params   

  public synchronized io.vertx.sqlclient.Cursor cursor();
    descriptor: ()Lio/vertx/sqlclient/Cursor;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
         0: .line 58
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
            areturn
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/impl/RowStreamImpl;

  public synchronized io.vertx.sqlclient.RowStream<io.vertx.sqlclient.Row> exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/sqlclient/RowStream;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 63
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.sqlclient.impl.RowStreamImpl.exceptionHandler:Lio/vertx/core/Handler;
         1: .line 64
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/sqlclient/impl/RowStreamImpl;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/sqlclient/RowStream<Lio/vertx/sqlclient/Row;>;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.sqlclient.RowStream<io.vertx.sqlclient.Row> handler(io.vertx.core.Handler<io.vertx.sqlclient.Row>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/sqlclient/RowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 70
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 71
            aload 1 /* handler */
            ifnull 11
         2: .line 72
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
            ifnonnull 10
         3: .line 73
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.sqlclient.impl.RowStreamImpl.rowHandler:Lio/vertx/core/Handler;
         4: .line 74
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.ps:Lio/vertx/sqlclient/impl/PreparedStatementImpl;
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.params:Lio/vertx/sqlclient/Tuple;
            invokevirtual io.vertx.sqlclient.impl.PreparedStatementImpl.cursor:(Lio/vertx/sqlclient/Tuple;)Lio/vertx/sqlclient/Cursor;
            dup_x1
            putfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
            astore 2 /* c */
        start local 2 // io.vertx.sqlclient.Cursor c
         5: .line 75
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.readInProgress:Z
            ifeq 8
         6: .line 76
            aload 0 /* this */
            aload 3
            monitorexit
         7: areturn
         8: .line 78
      StackMap locals: io.vertx.sqlclient.Cursor io.vertx.sqlclient.impl.RowStreamImpl
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.sqlclient.impl.RowStreamImpl.readInProgress:Z
         9: .line 79
            goto 19
        end local 2 // io.vertx.sqlclient.Cursor c
        10: .line 80
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl io.vertx.core.Handler top io.vertx.sqlclient.impl.RowStreamImpl
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            ldc "Handle me gracefully"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 83
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield io.vertx.sqlclient.impl.RowStreamImpl.rowHandler:Lio/vertx/core/Handler;
        12: .line 84
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
            ifnull 17
        13: .line 85
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
            invokeinterface io.vertx.sqlclient.Cursor.close:()Lio/vertx/core/Future;
            pop
        14: .line 86
            aload 0 /* this */
            iconst_0
            putfield io.vertx.sqlclient.impl.RowStreamImpl.readInProgress:Z
        15: .line 87
            aload 0 /* this */
            aconst_null
            putfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
        16: .line 88
            aload 0 /* this */
            aconst_null
            putfield io.vertx.sqlclient.impl.RowStreamImpl.result:Ljava/util/Iterator;
        17: .line 90
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3
            monitorexit
        18: areturn
        start local 2 // io.vertx.sqlclient.Cursor c
        19: .line 70
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl io.vertx.core.Handler io.vertx.sqlclient.Cursor io.vertx.sqlclient.impl.RowStreamImpl
      StackMap stack:
            aload 3
            monitorexit
        20: goto 23
        end local 2 // io.vertx.sqlclient.Cursor c
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl io.vertx.core.Handler top io.vertx.sqlclient.impl.RowStreamImpl
      StackMap stack: java.lang.Throwable
        21: aload 3
            monitorexit
        22: athrow
        start local 2 // io.vertx.sqlclient.Cursor c
        23: .line 93
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl io.vertx.core.Handler io.vertx.sqlclient.Cursor
      StackMap stack:
            aload 2 /* c */
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.fetch:I
            aload 0 /* this */
            invokeinterface io.vertx.sqlclient.Cursor.read:(ILio/vertx/core/Handler;)V
        24: .line 94
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.sqlclient.Cursor c
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   25     0     this  Lio/vertx/sqlclient/impl/RowStreamImpl;
            0   25     1  handler  Lio/vertx/core/Handler<Lio/vertx/sqlclient/Row;>;
            5   10     2        c  Lio/vertx/sqlclient/Cursor;
           19   21     2        c  Lio/vertx/sqlclient/Cursor;
           23   25     2        c  Lio/vertx/sqlclient/Cursor;
      Exception table:
        from    to  target  type
           1     7      21  any
           8    18      21  any
          19    20      21  any
          21    22      21  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/sqlclient/Row;>;)Lio/vertx/sqlclient/RowStream<Lio/vertx/sqlclient/Row;>;
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.sqlclient.RowStream<io.vertx.sqlclient.Row> pause();
    descriptor: ()Lio/vertx/sqlclient/RowStream;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
         0: .line 99
            aload 0 /* this */
            lconst_0
            putfield io.vertx.sqlclient.impl.RowStreamImpl.demand:J
         1: .line 100
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/sqlclient/impl/RowStreamImpl;
    Signature: ()Lio/vertx/sqlclient/RowStream<Lio/vertx/sqlclient/Row;>;

  public io.vertx.sqlclient.RowStream<io.vertx.sqlclient.Row> fetch(long);
    descriptor: (J)Lio/vertx/sqlclient/RowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
        start local 1 // long amount
         0: .line 105
            lload 1 /* amount */
            lconst_0
            lcmp
            ifge 2
         1: .line 106
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid fetch amount "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 1 /* amount */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         3: .line 109
            aload 0 /* this */
            dup
            getfield io.vertx.sqlclient.impl.RowStreamImpl.demand:J
            lload 1 /* amount */
            ladd
            putfield io.vertx.sqlclient.impl.RowStreamImpl.demand:J
         4: .line 110
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.demand:J
            lconst_0
            lcmp
            ifge 6
         5: .line 111
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.sqlclient.impl.RowStreamImpl.demand:J
         6: .line 108
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl
      StackMap stack:
            aload 3
            monitorexit
         7: goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: aload 3
            monitorexit
         9: athrow
        10: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.sqlclient.impl.RowStreamImpl.checkPending:()V
        11: .line 115
            aload 0 /* this */
            areturn
        end local 1 // long amount
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lio/vertx/sqlclient/impl/RowStreamImpl;
            0   12     1  amount  J
      Exception table:
        from    to  target  type
           3     7       8  any
           8     9       8  any
    Signature: (J)Lio/vertx/sqlclient/RowStream<Lio/vertx/sqlclient/Row;>;
    MethodParameters:
        Name  Flags
      amount  

  public io.vertx.sqlclient.RowStream<io.vertx.sqlclient.Row> resume();
    descriptor: ()Lio/vertx/sqlclient/RowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
         0: .line 120
            aload 0 /* this */
            ldc 9223372036854775807
            invokevirtual io.vertx.sqlclient.impl.RowStreamImpl.fetch:(J)Lio/vertx/sqlclient/RowStream;
            areturn
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/impl/RowStreamImpl;
    Signature: ()Lio/vertx/sqlclient/RowStream<Lio/vertx/sqlclient/Row;>;

  public synchronized io.vertx.sqlclient.RowStream<io.vertx.sqlclient.Row> endHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/sqlclient/RowStream;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 125
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.sqlclient.impl.RowStreamImpl.endHandler:Lio/vertx/core/Handler;
         1: .line 126
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/sqlclient/impl/RowStreamImpl;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/sqlclient/RowStream<Lio/vertx/sqlclient/Row;>;
    MethodParameters:
         Name  Flags
      handler  

  public void handle(io.vertx.core.AsyncResult<io.vertx.sqlclient.RowSet<io.vertx.sqlclient.Row>>);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
        start local 1 // io.vertx.core.AsyncResult ar
         0: .line 131
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 13
         1: .line 133
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         2: .line 134
            aload 0 /* this */
            iconst_0
            putfield io.vertx.sqlclient.impl.RowStreamImpl.readInProgress:Z
         3: .line 135
            aload 0 /* this */
            aconst_null
            putfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
         4: .line 136
            aload 0 /* this */
            aconst_null
            putfield io.vertx.sqlclient.impl.RowStreamImpl.result:Ljava/util/Iterator;
         5: .line 137
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.exceptionHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         6: .line 133
            aload 3
            monitorexit
         7: goto 10
        end local 2 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl io.vertx.core.AsyncResult top io.vertx.sqlclient.impl.RowStreamImpl
      StackMap stack: java.lang.Throwable
         8: aload 3
            monitorexit
         9: athrow
        start local 2 // io.vertx.core.Handler handler
        10: .line 139
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl io.vertx.core.AsyncResult io.vertx.core.Handler
      StackMap stack:
            aload 2 /* handler */
            ifnull 23
        11: .line 140
            aload 2 /* handler */
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 2 // io.vertx.core.Handler handler
        12: .line 142
            goto 23
        13: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 2
            monitorenter
        14: .line 144
            aload 0 /* this */
            iconst_0
            putfield io.vertx.sqlclient.impl.RowStreamImpl.readInProgress:Z
        15: .line 145
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.sqlclient.RowSet
            invokeinterface io.vertx.sqlclient.RowSet.iterator:()Lio/vertx/sqlclient/RowIterator;
            astore 3 /* it */
        start local 3 // io.vertx.sqlclient.RowIterator it
        16: .line 146
            aload 3 /* it */
            invokeinterface io.vertx.sqlclient.RowIterator.hasNext:()Z
            ifeq 18
        17: .line 147
            aload 0 /* this */
            aload 3 /* it */
            putfield io.vertx.sqlclient.impl.RowStreamImpl.result:Ljava/util/Iterator;
        end local 3 // io.vertx.sqlclient.RowIterator it
        18: .line 143
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl
      StackMap stack:
            aload 2
            monitorexit
        19: goto 22
      StackMap locals:
      StackMap stack: java.lang.Throwable
        20: aload 2
            monitorexit
        21: athrow
        22: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.sqlclient.impl.RowStreamImpl.checkPending:()V
        23: .line 152
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   24     0     this  Lio/vertx/sqlclient/impl/RowStreamImpl;
            0   24     1       ar  Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/RowSet<Lio/vertx/sqlclient/Row;>;>;
            6    8     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
           10   12     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
           16   18     3       it  Lio/vertx/sqlclient/RowIterator<Lio/vertx/sqlclient/Row;>;
      Exception table:
        from    to  target  type
           2     7       8  any
           8     9       8  any
          14    19      20  any
          20    21      20  any
    Signature: (Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/RowSet<Lio/vertx/sqlclient/Row;>;>;)V
    MethodParameters:
      Name  Flags
      ar    

  public io.vertx.core.Future<java.lang.Void> close();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
         0: .line 157
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 158
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
            astore 1 /* c */
        start local 1 // io.vertx.sqlclient.Cursor c
         2: .line 159
            aload 0 /* this */
            aconst_null
            putfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
         3: .line 157
            aload 2
            monitorexit
         4: goto 7
        end local 1 // io.vertx.sqlclient.Cursor c
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl top io.vertx.sqlclient.impl.RowStreamImpl
      StackMap stack: java.lang.Throwable
         5: aload 2
            monitorexit
         6: athrow
        start local 1 // io.vertx.sqlclient.Cursor c
         7: .line 161
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl io.vertx.sqlclient.Cursor
      StackMap stack:
            aload 1 /* c */
            ifnull 9
         8: .line 162
            aload 1 /* c */
            invokeinterface io.vertx.sqlclient.Cursor.close:()Lio/vertx/core/Future;
            areturn
         9: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.succeededFuture:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.sqlclient.Cursor c
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/vertx/sqlclient/impl/RowStreamImpl;
            2    5     1     c  Lio/vertx/sqlclient/Cursor;
            7   10     1     c  Lio/vertx/sqlclient/Cursor;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  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=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 170
            aload 0 /* this */
            invokevirtual io.vertx.sqlclient.impl.RowStreamImpl.close:()Lio/vertx/core/Future;
            astore 2 /* fut */
        start local 2 // io.vertx.core.Future fut
         1: .line 171
            aload 1 /* completionHandler */
            ifnull 3
         2: .line 172
            aload 2 /* fut */
            aload 1 /* completionHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         3: .line 174
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            return
        end local 2 // io.vertx.core.Future fut
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lio/vertx/sqlclient/impl/RowStreamImpl;
            0    4     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            1    4     2                fut  Lio/vertx/core/Future<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  private void checkPending();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
         0: .line 177
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 178
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.emitting:Z
            ifeq 4
         2: .line 179
            aload 1
            monitorexit
         3: return
         4: .line 181
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.sqlclient.impl.RowStreamImpl.emitting:Z
         5: .line 177
            aload 1
            monitorexit
         6: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 1
            monitorexit
         8: athrow
         9: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 1
            monitorenter
        10: .line 185
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.demand:J
            lconst_0
            lcmp
            ifne 14
        11: .line 186
            aload 0 /* this */
            iconst_0
            putfield io.vertx.sqlclient.impl.RowStreamImpl.emitting:Z
        12: .line 187
            aload 1
            monitorexit
        13: goto 44
        14: .line 191
      StackMap locals: io.vertx.sqlclient.impl.RowStreamImpl
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.result:Ljava/util/Iterator;
            ifnull 22
        15: .line 192
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.rowHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
        16: .line 193
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.result:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* event */
        start local 3 // java.lang.Object event
        17: .line 194
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.demand:J
            ldc 9223372036854775807
            lcmp
            ifeq 19
        18: .line 195
            aload 0 /* this */
            dup
            getfield io.vertx.sqlclient.impl.RowStreamImpl.demand:J
            lconst_1
            lsub
            putfield io.vertx.sqlclient.impl.RowStreamImpl.demand:J
        19: .line 197
      StackMap locals: io.vertx.core.Handler java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.result:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 38
        20: .line 198
            aload 0 /* this */
            aconst_null
            putfield io.vertx.sqlclient.impl.RowStreamImpl.result:Ljava/util/Iterator;
        21: .line 200
            goto 38
        end local 3 // java.lang.Object event
        end local 2 // io.vertx.core.Handler handler
        22: .line 201
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield io.vertx.sqlclient.impl.RowStreamImpl.emitting:Z
        23: .line 202
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.readInProgress:Z
            ifeq 26
        24: .line 203
            aload 1
            monitorexit
        25: goto 44
        26: .line 205
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
            ifnonnull 29
        27: .line 206
            aload 1
            monitorexit
        28: goto 44
        29: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
            invokeinterface io.vertx.sqlclient.Cursor.hasMore:()Z
            ifeq 34
        30: .line 208
            aload 0 /* this */
            iconst_1
            putfield io.vertx.sqlclient.impl.RowStreamImpl.readInProgress:Z
        31: .line 209
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.fetch:I
            aload 0 /* this */
            invokeinterface io.vertx.sqlclient.Cursor.read:(ILio/vertx/core/Handler;)V
        32: .line 210
            aload 1
            monitorexit
        33: goto 44
        34: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
            invokeinterface io.vertx.sqlclient.Cursor.close:()Lio/vertx/core/Future;
            pop
        35: .line 213
            aload 0 /* this */
            aconst_null
            putfield io.vertx.sqlclient.impl.RowStreamImpl.cursor:Lio/vertx/sqlclient/Cursor;
        36: .line 214
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.RowStreamImpl.endHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
        37: .line 215
            aconst_null
            astore 3 /* event */
        start local 3 // java.lang.Object event
        38: .line 219
      StackMap locals: io.vertx.core.Handler java.lang.Object
      StackMap stack:
            aload 2 /* handler */
            ifnull 40
        39: .line 220
            aload 2 /* handler */
            aload 3 /* event */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 3 // java.lang.Object event
        end local 2 // io.vertx.core.Handler handler
        40: .line 184
      StackMap locals:
      StackMap stack:
            aload 1
            monitorexit
        41: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
        42: aload 1
            monitorexit
        43: athrow
        44: .line 224
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.sqlclient.impl.RowStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   45     0     this  Lio/vertx/sqlclient/impl/RowStreamImpl;
           16   22     2  handler  Lio/vertx/core/Handler;
           37   40     2  handler  Lio/vertx/core/Handler;
           17   22     3    event  Ljava/lang/Object;
           38   40     3    event  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     3       7  any
           4     6       7  any
           7     8       7  any
          10    13      42  any
          14    25      42  any
          26    28      42  any
          29    33      42  any
          34    41      42  any
          42    43      42  any

  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.sqlclient.impl.RowStreamImpl.pause:()Lio/vertx/sqlclient/RowStream;
            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.sqlclient.impl.RowStreamImpl.handler:(Lio/vertx/core/Handler;)Lio/vertx/sqlclient/RowStream;
            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.sqlclient.impl.RowStreamImpl.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/sqlclient/RowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void handle(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    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.AsyncResult
            invokevirtual io.vertx.sqlclient.impl.RowStreamImpl.handle:(Lio/vertx/core/AsyncResult;)V
            return
      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.sqlclient.impl.RowStreamImpl.resume:()Lio/vertx/sqlclient/RowStream;
            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.sqlclient.impl.RowStreamImpl.fetch:(J)Lio/vertx/sqlclient/RowStream;
            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.sqlclient.impl.RowStreamImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/sqlclient/RowStream;
            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.sqlclient.impl.RowStreamImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/sqlclient/RowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lio/vertx/sqlclient/impl/RowStreamInternal;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/RowSet<Lio/vertx/sqlclient/Row;>;>;>;
SourceFile: "RowStreamImpl.java"