public class io.vertx.ext.sql.impl.RowStreamWrapper implements io.vertx.ext.sql.SQLRowStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.sql.impl.RowStreamWrapper
  super_class: java.lang.Object
{
  private final io.vertx.ext.sql.SQLConnection connection;
    descriptor: Lio/vertx/ext/sql/SQLConnection;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.ext.sql.SQLRowStream rowStream;
    descriptor: Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.vertx.ext.sql.SQLConnection, io.vertx.ext.sql.SQLRowStream);
    descriptor: (Lio/vertx/ext/sql/SQLConnection;Lio/vertx/ext/sql/SQLRowStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
        start local 1 // io.vertx.ext.sql.SQLConnection connection
        start local 2 // io.vertx.ext.sql.SQLRowStream rowStream
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            aload 1 /* connection */
            putfield io.vertx.ext.sql.impl.RowStreamWrapper.connection:Lio/vertx/ext/sql/SQLConnection;
         2: .line 39
            aload 0 /* this */
            aload 2 /* rowStream */
            putfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
         3: .line 40
            return
        end local 2 // io.vertx.ext.sql.SQLRowStream rowStream
        end local 1 // io.vertx.ext.sql.SQLConnection connection
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    4     1  connection  Lio/vertx/ext/sql/SQLConnection;
            0    4     2   rowStream  Lio/vertx/ext/sql/SQLRowStream;
    MethodParameters:
            Name  Flags
      connection  
      rowStream   

  private void closeConnection(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
        start local 1 // io.vertx.core.Handler handler
         0: .line 43
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.connection:Lio/vertx/ext/sql/SQLConnection;
            aload 1 /* handler */
            invokeinterface io.vertx.ext.sql.SQLConnection.close:(Lio/vertx/core/Handler;)V
         1: .line 44
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    2     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.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=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
        start local 1 // io.vertx.core.Handler handler
         0: .line 48
            aload 1 /* handler */
            ifnonnull 3
         1: .line 49
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            aconst_null
            invokeinterface io.vertx.ext.sql.SQLRowStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            pop
         2: .line 50
            goto 4
         3: .line 51
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            aload 0 /* this */
            aload 1 /* handler */
            invokedynamic handle(Lio/vertx/ext/sql/impl/RowStreamWrapper;Lio/vertx/core/Handler;)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/sql/impl/RowStreamWrapper.lambda$0(Lio/vertx/core/Handler;Ljava/lang/Throwable;)V (7)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.ext.sql.SQLRowStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            pop
         4: .line 53
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    5     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.sql.impl.RowStreamWrapper this
        start local 1 // io.vertx.core.Handler handler
         0: .line 58
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            aload 1 /* handler */
            invokeinterface io.vertx.ext.sql.SQLRowStream.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            pop
         1: .line 59
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    2     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 fetch(long);
    descriptor: (J)Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
        start local 1 // long amount
         0: .line 64
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            lload 1 /* amount */
            invokeinterface io.vertx.ext.sql.SQLRowStream.fetch:(J)Lio/vertx/core/streams/ReadStream;
            pop
         1: .line 65
            aload 0 /* this */
            areturn
        end local 1 // long amount
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    2     1  amount  J
    MethodParameters:
        Name  Flags
      amount  

  public io.vertx.ext.sql.SQLRowStream pause();
    descriptor: ()Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
         0: .line 70
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            invokeinterface io.vertx.ext.sql.SQLRowStream.pause:()Lio/vertx/ext/sql/SQLRowStream;
            pop
         1: .line 71
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/sql/impl/RowStreamWrapper;

  public io.vertx.ext.sql.SQLRowStream resume();
    descriptor: ()Lio/vertx/ext/sql/SQLRowStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
         0: .line 76
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            invokeinterface io.vertx.ext.sql.SQLRowStream.resume:()Lio/vertx/ext/sql/SQLRowStream;
            pop
         1: .line 77
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/sql/impl/RowStreamWrapper;

  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.sql.impl.RowStreamWrapper this
        start local 1 // io.vertx.core.Handler endHandler
         0: .line 82
            aload 1 /* endHandler */
            ifnonnull 3
         1: .line 83
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            aconst_null
            invokeinterface io.vertx.ext.sql.SQLRowStream.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            pop
         2: .line 84
            goto 4
         3: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            aload 0 /* this */
            aload 1 /* endHandler */
            invokedynamic handle(Lio/vertx/ext/sql/impl/RowStreamWrapper;Lio/vertx/core/Handler;)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/sql/impl/RowStreamWrapper.lambda$2(Lio/vertx/core/Handler;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.ext.sql.SQLRowStream.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            pop
         4: .line 87
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler endHandler
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    5     1  endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/ext/sql/SQLRowStream;
    MethodParameters:
            Name  Flags
      endHandler  

  public int column(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
        start local 1 // java.lang.String name
         0: .line 92
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            aload 1 /* name */
            invokeinterface io.vertx.ext.sql.SQLRowStream.column:(Ljava/lang/String;)I
            ireturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    1     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=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
         0: .line 97
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            invokeinterface io.vertx.ext.sql.SQLRowStream.columns:()Ljava/util/List;
            areturn
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  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=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
        start local 1 // io.vertx.core.Handler handler
         0: .line 102
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            aload 1 /* handler */
            invokeinterface io.vertx.ext.sql.SQLRowStream.resultSetClosedHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            pop
         1: .line 103
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    2     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=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
         0: .line 108
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            invokeinterface io.vertx.ext.sql.SQLRowStream.moreResults:()V
         1: .line 109
            return
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/sql/impl/RowStreamWrapper;

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

  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=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
        start local 1 // io.vertx.core.Handler handler
         0: .line 118
            aload 0 /* this */
            getfield io.vertx.ext.sql.impl.RowStreamWrapper.rowStream:Lio/vertx/ext/sql/SQLRowStream;
            aload 0 /* this */
            aload 1 /* handler */
            invokedynamic handle(Lio/vertx/ext/sql/impl/RowStreamWrapper;Lio/vertx/core/Handler;)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/sql/impl/RowStreamWrapper.lambda$4(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.ext.sql.SQLRowStream.close:(Lio/vertx/core/Handler;)V
         1: .line 123
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    2     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.sql.impl.RowStreamWrapper.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.sql.impl.RowStreamWrapper.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.sql.impl.RowStreamWrapper.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.sql.impl.RowStreamWrapper.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.sql.impl.RowStreamWrapper.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.sql.impl.RowStreamWrapper.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.sql.impl.RowStreamWrapper.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLRowStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void lambda$0(io.vertx.core.Handler, java.lang.Throwable);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Throwable;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
        start local 2 // java.lang.Throwable h1
         0: .line 51
            aload 0 /* this */
            aload 1
            aload 2 /* h1 */
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/lang/Throwable;)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/sql/impl/RowStreamWrapper.lambda$1(Lio/vertx/core/Handler;Ljava/lang/Throwable;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.ext.sql.impl.RowStreamWrapper.closeConnection:(Lio/vertx/core/Handler;)V
            return
        end local 2 // java.lang.Throwable h1
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    1     2    h1  Ljava/lang/Throwable;

  private void lambda$2(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
        start local 2 // java.lang.Void h1
         0: .line 85
            aload 0 /* this */
            aload 1
            aload 2 /* h1 */
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/lang/Void;)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/sql/impl/RowStreamWrapper.lambda$3(Lio/vertx/core/Handler;Ljava/lang/Void;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.ext.sql.impl.RowStreamWrapper.closeConnection:(Lio/vertx/core/Handler;)V
            return
        end local 2 // java.lang.Void h1
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    1     2    h1  Ljava/lang/Void;

  private void lambda$4(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
        start local 2 // io.vertx.core.AsyncResult h1
         0: .line 118
            aload 0 /* this */
            aload 1
            aload 2 /* h1 */
            invokedynamic handle(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)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/sql/impl/RowStreamWrapper.lambda$5(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.ext.sql.impl.RowStreamWrapper.closeConnection:(Lio/vertx/core/Handler;)V
         1: .line 122
            return
        end local 2 // io.vertx.core.AsyncResult h1
        end local 0 // io.vertx.ext.sql.impl.RowStreamWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/sql/impl/RowStreamWrapper;
            0    2     2    h1  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private static void lambda$1(io.vertx.core.Handler, java.lang.Throwable, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Throwable;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult h2
         0: .line 51
            aload 0
            aload 1
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 2 // io.vertx.core.AsyncResult h2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     2    h2  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private static void lambda$3(io.vertx.core.Handler, java.lang.Void, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult h2
         0: .line 85
            aload 0
            aload 1
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 2 // io.vertx.core.AsyncResult h2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     2    h2  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private static void lambda$5(io.vertx.core.Handler, io.vertx.core.AsyncResult, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult h2
         0: .line 119
            aload 0
            ifnull 2
         1: .line 120
            aload 0
            aload 1
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 122
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult h2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     2    h2  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
}
SourceFile: "RowStreamWrapper.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles