public class io.vertx.sqlclient.impl.SqlResultBuilder<T, R extends io.vertx.sqlclient.impl.SqlResultBase<T, R>, L extends io.vertx.sqlclient.SqlResult<T>> implements io.vertx.sqlclient.impl.QueryResultHandler<T>, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Boolean>>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.sqlclient.impl.SqlResultBuilder
  super_class: java.lang.Object
{
  private final io.vertx.core.Handler<io.vertx.core.AsyncResult<L>> handler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TL;>;>;

  private final java.util.function.Function<T, R> factory;
    descriptor: Ljava/util/function/Function;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/function/Function<TT;TR;>;

  private R first;
    descriptor: Lio/vertx/sqlclient/impl/SqlResultBase;
    flags: (0x0002) ACC_PRIVATE
    Signature: TR;

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

  void <init>(java.util.function.Function<T, R>, io.vertx.core.Handler<io.vertx.core.AsyncResult<L>>);
    descriptor: (Ljava/util/function/Function;Lio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.sqlclient.impl.SqlResultBuilder this
        start local 1 // java.util.function.Function factory
        start local 2 // io.vertx.core.Handler handler
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            aload 1 /* factory */
            putfield io.vertx.sqlclient.impl.SqlResultBuilder.factory:Ljava/util/function/Function;
         2: .line 38
            aload 0 /* this */
            aload 2 /* handler */
            putfield io.vertx.sqlclient.impl.SqlResultBuilder.handler:Lio/vertx/core/Handler;
         3: .line 39
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.util.function.Function factory
        end local 0 // io.vertx.sqlclient.impl.SqlResultBuilder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/sqlclient/impl/SqlResultBuilder<TT;TR;TL;>;
            0    4     1  factory  Ljava/util/function/Function<TT;TR;>;
            0    4     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TL;>;>;
    Signature: (Ljava/util/function/Function<TT;TR;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TL;>;>;)V
    MethodParameters:
         Name  Flags
      factory  
      handler  

  public void handleResult(int, int, io.vertx.sqlclient.impl.RowDesc, );
    descriptor: (IILio/vertx/sqlclient/impl/RowDesc;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=5
        start local 0 // io.vertx.sqlclient.impl.SqlResultBuilder this
        start local 1 // int updatedCount
        start local 2 // int size
        start local 3 // io.vertx.sqlclient.impl.RowDesc desc
        start local 4 // java.lang.Object result
         0: .line 43
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.SqlResultBuilder.factory:Ljava/util/function/Function;
            aload 4 /* result */
            invokeinterface java.util.function.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.sqlclient.impl.SqlResultBase
            astore 5 /* r */
        start local 5 // io.vertx.sqlclient.impl.SqlResultBase r
         1: .line 44
            aload 5 /* r */
            iload 1 /* updatedCount */
            putfield io.vertx.sqlclient.impl.SqlResultBase.updated:I
         2: .line 45
            aload 5 /* r */
            iload 2 /* size */
            putfield io.vertx.sqlclient.impl.SqlResultBase.size:I
         3: .line 46
            aload 5 /* r */
            aload 3 /* desc */
            ifnull 4
            aload 3 /* desc */
            invokevirtual io.vertx.sqlclient.impl.RowDesc.columnNames:()Ljava/util/List;
            goto 5
      StackMap locals: io.vertx.sqlclient.impl.SqlResultBuilder int int io.vertx.sqlclient.impl.RowDesc java.lang.Object io.vertx.sqlclient.impl.SqlResultBase
      StackMap stack: io.vertx.sqlclient.impl.SqlResultBase
         4: aconst_null
      StackMap locals: io.vertx.sqlclient.impl.SqlResultBuilder int int io.vertx.sqlclient.impl.RowDesc java.lang.Object io.vertx.sqlclient.impl.SqlResultBase
      StackMap stack: io.vertx.sqlclient.impl.SqlResultBase java.util.List
         5: putfield io.vertx.sqlclient.impl.SqlResultBase.columnNames:Ljava/util/List;
         6: .line 47
            aload 0 /* this */
            aload 5 /* r */
            invokevirtual io.vertx.sqlclient.impl.SqlResultBuilder.handleResult:(Lio/vertx/sqlclient/impl/SqlResultBase;)V
         7: .line 48
            return
        end local 5 // io.vertx.sqlclient.impl.SqlResultBase r
        end local 4 // java.lang.Object result
        end local 3 // io.vertx.sqlclient.impl.RowDesc desc
        end local 2 // int size
        end local 1 // int updatedCount
        end local 0 // io.vertx.sqlclient.impl.SqlResultBuilder this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0          this  Lio/vertx/sqlclient/impl/SqlResultBuilder<TT;TR;TL;>;
            0    8     1  updatedCount  I
            0    8     2          size  I
            0    8     3          desc  Lio/vertx/sqlclient/impl/RowDesc;
            0    8     4        result  TT;
            1    8     5             r  TR;
    Signature: (IILio/vertx/sqlclient/impl/RowDesc;TT;)V
    MethodParameters:
              Name  Flags
      updatedCount  
      size          
      desc          
      result        

  private void handleResult();
    descriptor: (Lio/vertx/sqlclient/impl/SqlResultBase;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.SqlResultBuilder this
        start local 1 // io.vertx.sqlclient.impl.SqlResultBase result
         0: .line 51
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.SqlResultBuilder.first:Lio/vertx/sqlclient/impl/SqlResultBase;
            ifnonnull 3
         1: .line 52
            aload 0 /* this */
            aload 1 /* result */
            putfield io.vertx.sqlclient.impl.SqlResultBuilder.first:Lio/vertx/sqlclient/impl/SqlResultBase;
         2: .line 53
            goto 8
         3: .line 54
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.SqlResultBuilder.first:Lio/vertx/sqlclient/impl/SqlResultBase;
            astore 2 /* h */
        start local 2 // io.vertx.sqlclient.impl.SqlResultBase h
         4: .line 55
            goto 6
         5: .line 56
      StackMap locals: io.vertx.sqlclient.impl.SqlResultBase
      StackMap stack:
            aload 2 /* h */
            getfield io.vertx.sqlclient.impl.SqlResultBase.next:Lio/vertx/sqlclient/impl/SqlResultBase;
            astore 2 /* h */
         6: .line 55
      StackMap locals:
      StackMap stack:
            aload 2 /* h */
            getfield io.vertx.sqlclient.impl.SqlResultBase.next:Lio/vertx/sqlclient/impl/SqlResultBase;
            ifnonnull 5
         7: .line 58
            aload 2 /* h */
            aload 1 /* result */
            putfield io.vertx.sqlclient.impl.SqlResultBase.next:Lio/vertx/sqlclient/impl/SqlResultBase;
        end local 2 // io.vertx.sqlclient.impl.SqlResultBase h
         8: .line 60
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.sqlclient.impl.SqlResultBase result
        end local 0 // io.vertx.sqlclient.impl.SqlResultBuilder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lio/vertx/sqlclient/impl/SqlResultBuilder<TT;TR;TL;>;
            0    9     1  result  TR;
            4    8     2       h  TR;
    Signature: (TR;)V
    MethodParameters:
        Name  Flags
      result  

  public void handle(io.vertx.core.AsyncResult<java.lang.Boolean>);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.SqlResultBuilder this
        start local 1 // io.vertx.core.AsyncResult res
         0: .line 64
            aload 0 /* this */
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 1
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: io.vertx.sqlclient.impl.SqlResultBuilder
         1: iconst_0
      StackMap locals: io.vertx.sqlclient.impl.SqlResultBuilder io.vertx.core.AsyncResult
      StackMap stack: io.vertx.sqlclient.impl.SqlResultBuilder int
         2: putfield io.vertx.sqlclient.impl.SqlResultBuilder.suspended:Z
         3: .line 65
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.SqlResultBuilder.handler:Lio/vertx/core/Handler;
            aload 1 /* res */
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.SqlResultBuilder.first:Lio/vertx/sqlclient/impl/SqlResultBase;
            invokeinterface io.vertx.core.AsyncResult.map:(Ljava/lang/Object;)Lio/vertx/core/AsyncResult;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 66
            return
        end local 1 // io.vertx.core.AsyncResult res
        end local 0 // io.vertx.sqlclient.impl.SqlResultBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/sqlclient/impl/SqlResultBuilder<TT;TR;TL;>;
            0    5     1   res  Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;
    Signature: (Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;)V
    MethodParameters:
      Name  Flags
      res   

  public boolean isSuspended();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.impl.SqlResultBuilder this
         0: .line 69
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.SqlResultBuilder.suspended:Z
            ireturn
        end local 0 // io.vertx.sqlclient.impl.SqlResultBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/impl/SqlResultBuilder<TT;TR;TL;>;

  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.SqlResultBuilder.handle:(Lio/vertx/core/AsyncResult;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;R:Lio/vertx/sqlclient/impl/SqlResultBase<TT;TR;>;L::Lio/vertx/sqlclient/SqlResult<TT;>;>Ljava/lang/Object;Lio/vertx/sqlclient/impl/QueryResultHandler<TT;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;>;
SourceFile: "SqlResultBuilder.java"