class io.reactiverse.pgclient.impl.PgPreparedQueryImpl implements io.reactiverse.pgclient.PgPreparedQuery
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.reactiverse.pgclient.impl.PgPreparedQueryImpl
  super_class: java.lang.Object
{
  private final io.reactiverse.pgclient.impl.Connection conn;
    descriptor: Lio/reactiverse/pgclient/impl/Connection;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final io.reactiverse.pgclient.impl.PreparedStatement ps;
    descriptor: Lio/reactiverse/pgclient/impl/PreparedStatement;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  void <init>(io.reactiverse.pgclient.impl.Connection, io.vertx.core.Context, io.reactiverse.pgclient.impl.PreparedStatement);
    descriptor: (Lio/reactiverse/pgclient/impl/Connection;Lio/vertx/core/Context;Lio/reactiverse/pgclient/impl/PreparedStatement;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // io.reactiverse.pgclient.impl.Connection conn
        start local 2 // io.vertx.core.Context context
        start local 3 // io.reactiverse.pgclient.impl.PreparedStatement ps
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 36
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            putfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
         2: .line 39
            aload 0 /* this */
            aload 1 /* conn */
            putfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.conn:Lio/reactiverse/pgclient/impl/Connection;
         3: .line 40
            aload 0 /* this */
            aload 2 /* context */
            putfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.context:Lio/vertx/core/Context;
         4: .line 41
            aload 0 /* this */
            aload 3 /* ps */
            putfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.ps:Lio/reactiverse/pgclient/impl/PreparedStatement;
         5: .line 42
            return
        end local 3 // io.reactiverse.pgclient.impl.PreparedStatement ps
        end local 2 // io.vertx.core.Context context
        end local 1 // io.reactiverse.pgclient.impl.Connection conn
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    6     1     conn  Lio/reactiverse/pgclient/impl/Connection;
            0    6     2  context  Lio/vertx/core/Context;
            0    6     3       ps  Lio/reactiverse/pgclient/impl/PreparedStatement;
    MethodParameters:
         Name  Flags
      conn     
      context  
      ps       

  public io.reactiverse.pgclient.PgPreparedQuery execute(io.reactiverse.pgclient.Tuple, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.reactiverse.pgclient.PgRowSet>>);
    descriptor: (Lio/reactiverse/pgclient/Tuple;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // io.reactiverse.pgclient.Tuple args
        start local 2 // io.vertx.core.Handler handler
         0: .line 46
            aload 0 /* this */
            aload 1 /* args */
            iconst_0
            getstatic io.reactiverse.pgclient.impl.PgRowSetImpl.FACTORY:Ljava/util/function/Function;
            getstatic io.reactiverse.pgclient.impl.PgRowSetImpl.COLLECTOR:Ljava/util/stream/Collector;
            aload 2 /* handler */
            invokevirtual io.reactiverse.pgclient.impl.PgPreparedQueryImpl.execute:(Lio/reactiverse/pgclient/Tuple;ZLjava/util/function/Function;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.reactiverse.pgclient.Tuple args
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    1     1     args  Lio/reactiverse/pgclient/Tuple;
            0    1     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/reactiverse/pgclient/PgRowSet;>;>;
    Signature: (Lio/reactiverse/pgclient/Tuple;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/reactiverse/pgclient/PgRowSet;>;>;)Lio/reactiverse/pgclient/PgPreparedQuery;
    MethodParameters:
         Name  Flags
      args     
      handler  

  public <R> io.reactiverse.pgclient.PgPreparedQuery execute(io.reactiverse.pgclient.Tuple, java.util.stream.Collector<io.reactiverse.pgclient.Row, ?, R>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.reactiverse.pgclient.PgResult<R>>>);
    descriptor: (Lio/reactiverse/pgclient/Tuple;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // io.reactiverse.pgclient.Tuple args
        start local 2 // java.util.stream.Collector collector
        start local 3 // io.vertx.core.Handler handler
         0: .line 51
            aload 0 /* this */
            aload 1 /* args */
            iconst_1
            invokedynamic apply()Ljava/util/function/Function;
              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;)Ljava/lang/Object;
                  io/reactiverse/pgclient/impl/PgResultImpl.<init>(Ljava/lang/Object;)V (8)
                  (Ljava/lang/Object;)Lio/reactiverse/pgclient/impl/PgResultImpl;
            aload 2 /* collector */
            aload 3 /* handler */
            invokevirtual io.reactiverse.pgclient.impl.PgPreparedQueryImpl.execute:(Lio/reactiverse/pgclient/Tuple;ZLjava/util/function/Function;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
            areturn
        end local 3 // io.vertx.core.Handler handler
        end local 2 // java.util.stream.Collector collector
        end local 1 // io.reactiverse.pgclient.Tuple args
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    1     1       args  Lio/reactiverse/pgclient/Tuple;
            0    1     2  collector  Ljava/util/stream/Collector<Lio/reactiverse/pgclient/Row;*TR;>;
            0    1     3    handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/reactiverse/pgclient/PgResult<TR;>;>;>;
    Signature: <R:Ljava/lang/Object;>(Lio/reactiverse/pgclient/Tuple;Ljava/util/stream/Collector<Lio/reactiverse/pgclient/Row;*TR;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/reactiverse/pgclient/PgResult<TR;>;>;>;)Lio/reactiverse/pgclient/PgPreparedQuery;
    MethodParameters:
           Name  Flags
      args       
      collector  
      handler    

  private <R1, R2 extends io.reactiverse.pgclient.impl.PgResultBase<R1, R2>, R3 extends io.reactiverse.pgclient.PgResult<R1>> io.reactiverse.pgclient.PgPreparedQuery execute(io.reactiverse.pgclient.Tuple, boolean, java.util.function.Function<R1, R2>, java.util.stream.Collector<io.reactiverse.pgclient.Row, ?, R1>, io.vertx.core.Handler<io.vertx.core.AsyncResult<R3>>);
    descriptor: (Lio/reactiverse/pgclient/Tuple;ZLjava/util/function/Function;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=7, args_size=6
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // io.reactiverse.pgclient.Tuple args
        start local 2 // boolean singleton
        start local 3 // java.util.function.Function factory
        start local 4 // java.util.stream.Collector collector
        start local 5 // io.vertx.core.Handler handler
         0: .line 60
            new io.reactiverse.pgclient.impl.PgResultBuilder
            dup
            aload 3 /* factory */
            aload 5 /* handler */
            invokespecial io.reactiverse.pgclient.impl.PgResultBuilder.<init>:(Ljava/util/function/Function;Lio/vertx/core/Handler;)V
            astore 6 /* b */
        start local 6 // io.reactiverse.pgclient.impl.PgResultBuilder b
         1: .line 61
            aload 0 /* this */
            aload 1 /* args */
            iconst_0
            aconst_null
            iconst_0
            iload 2 /* singleton */
            aload 4 /* collector */
            aload 6 /* b */
            aload 6 /* b */
            invokevirtual io.reactiverse.pgclient.impl.PgPreparedQueryImpl.execute:(Lio/reactiverse/pgclient/Tuple;ILjava/lang/String;ZZLjava/util/stream/Collector;Lio/reactiverse/pgclient/impl/QueryResultHandler;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
            areturn
        end local 6 // io.reactiverse.pgclient.impl.PgResultBuilder b
        end local 5 // io.vertx.core.Handler handler
        end local 4 // java.util.stream.Collector collector
        end local 3 // java.util.function.Function factory
        end local 2 // boolean singleton
        end local 1 // io.reactiverse.pgclient.Tuple args
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    2     1       args  Lio/reactiverse/pgclient/Tuple;
            0    2     2  singleton  Z
            0    2     3    factory  Ljava/util/function/Function<TR1;TR2;>;
            0    2     4  collector  Ljava/util/stream/Collector<Lio/reactiverse/pgclient/Row;*TR1;>;
            0    2     5    handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TR3;>;>;
            1    2     6          b  Lio/reactiverse/pgclient/impl/PgResultBuilder<TR1;TR2;TR3;>;
    Signature: <R1:Ljava/lang/Object;R2:Lio/reactiverse/pgclient/impl/PgResultBase<TR1;TR2;>;R3::Lio/reactiverse/pgclient/PgResult<TR1;>;>(Lio/reactiverse/pgclient/Tuple;ZLjava/util/function/Function<TR1;TR2;>;Ljava/util/stream/Collector<Lio/reactiverse/pgclient/Row;*TR1;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TR3;>;>;)Lio/reactiverse/pgclient/PgPreparedQuery;
    MethodParameters:
           Name  Flags
      args       
      singleton  
      factory    
      collector  
      handler    

  <A, R> io.reactiverse.pgclient.PgPreparedQuery execute(io.reactiverse.pgclient.Tuple, int, java.lang.String, boolean, boolean, java.util.stream.Collector<io.reactiverse.pgclient.Row, A, R>, io.reactiverse.pgclient.impl.QueryResultHandler<R>, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Boolean>>);
    descriptor: (Lio/reactiverse/pgclient/Tuple;ILjava/lang/String;ZZLjava/util/stream/Collector;Lio/reactiverse/pgclient/impl/QueryResultHandler;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
    flags: (0x0000) 
    Code:
      stack=10, locals=11, args_size=9
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // io.reactiverse.pgclient.Tuple args
        start local 2 // int fetch
        start local 3 // java.lang.String portal
        start local 4 // boolean suspended
        start local 5 // boolean singleton
        start local 6 // java.util.stream.Collector collector
        start local 7 // io.reactiverse.pgclient.impl.QueryResultHandler resultHandler
        start local 8 // io.vertx.core.Handler handler
         0: .line 72
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.context:Lio/vertx/core/Context;
            invokestatic io.vertx.core.Vertx.currentContext:()Lio/vertx/core/Context;
            if_acmpne 18
         1: .line 73
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.ps:Lio/reactiverse/pgclient/impl/PreparedStatement;
            aload 1 /* args */
            checkcast java.util.List
            invokevirtual io.reactiverse.pgclient.impl.PreparedStatement.prepare:(Ljava/util/List;)Ljava/lang/String;
            astore 9 /* msg */
        start local 9 // java.lang.String msg
         2: .line 74
            aload 9 /* msg */
            ifnull 5
         3: .line 75
            aload 8 /* handler */
            aload 9 /* msg */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 76
            goto 19
         5: .line 77
      StackMap locals: java.lang.String
      StackMap stack:
            new io.reactiverse.pgclient.impl.ExtendedQueryCommand
            dup
         6: .line 78
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.ps:Lio/reactiverse/pgclient/impl/PreparedStatement;
         7: .line 79
            aload 1 /* args */
         8: .line 80
            iload 2 /* fetch */
         9: .line 81
            aload 3 /* portal */
        10: .line 82
            iload 4 /* suspended */
        11: .line 83
            iload 5 /* singleton */
        12: .line 84
            aload 6 /* collector */
        13: .line 85
            aload 7 /* resultHandler */
        14: .line 77
            invokespecial io.reactiverse.pgclient.impl.ExtendedQueryCommand.<init>:(Lio/reactiverse/pgclient/impl/PreparedStatement;Lio/reactiverse/pgclient/Tuple;ILjava/lang/String;ZZLjava/util/stream/Collector;Lio/reactiverse/pgclient/impl/QueryResultHandler;)V
            astore 10 /* cmd */
        start local 10 // io.reactiverse.pgclient.impl.ExtendedQueryCommand cmd
        15: .line 86
            aload 10 /* cmd */
            aload 8 /* handler */
            putfield io.reactiverse.pgclient.impl.ExtendedQueryCommand.handler:Lio/vertx/core/Handler;
        16: .line 87
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.conn:Lio/reactiverse/pgclient/impl/Connection;
            aload 10 /* cmd */
            invokeinterface io.reactiverse.pgclient.impl.Connection.schedule:(Lio/reactiverse/pgclient/impl/CommandBase;)V
        end local 10 // io.reactiverse.pgclient.impl.ExtendedQueryCommand cmd
        end local 9 // java.lang.String msg
        17: .line 89
            goto 19
        18: .line 90
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.context:Lio/vertx/core/Context;
            aload 0 /* this */
            aload 1 /* args */
            iload 2 /* fetch */
            aload 3 /* portal */
            iload 4 /* suspended */
            iload 5 /* singleton */
            aload 6 /* collector */
            aload 7 /* resultHandler */
            aload 8 /* handler */
            invokedynamic handle(Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;Lio/reactiverse/pgclient/Tuple;ILjava/lang/String;ZZLjava/util/stream/Collector;Lio/reactiverse/pgclient/impl/QueryResultHandler;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/reactiverse/pgclient/impl/PgPreparedQueryImpl.lambda$1(Lio/reactiverse/pgclient/Tuple;ILjava/lang/String;ZZLjava/util/stream/Collector;Lio/reactiverse/pgclient/impl/QueryResultHandler;Lio/vertx/core/Handler;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
        19: .line 92
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 8 // io.vertx.core.Handler handler
        end local 7 // io.reactiverse.pgclient.impl.QueryResultHandler resultHandler
        end local 6 // java.util.stream.Collector collector
        end local 5 // boolean singleton
        end local 4 // boolean suspended
        end local 3 // java.lang.String portal
        end local 2 // int fetch
        end local 1 // io.reactiverse.pgclient.Tuple args
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   20     0           this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0   20     1           args  Lio/reactiverse/pgclient/Tuple;
            0   20     2          fetch  I
            0   20     3         portal  Ljava/lang/String;
            0   20     4      suspended  Z
            0   20     5      singleton  Z
            0   20     6      collector  Ljava/util/stream/Collector<Lio/reactiverse/pgclient/Row;TA;TR;>;
            0   20     7  resultHandler  Lio/reactiverse/pgclient/impl/QueryResultHandler<TR;>;
            0   20     8        handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;>;
            2   17     9            msg  Ljava/lang/String;
           15   17    10            cmd  Lio/reactiverse/pgclient/impl/ExtendedQueryCommand;
    Signature: <A:Ljava/lang/Object;R:Ljava/lang/Object;>(Lio/reactiverse/pgclient/Tuple;ILjava/lang/String;ZZLjava/util/stream/Collector<Lio/reactiverse/pgclient/Row;TA;TR;>;Lio/reactiverse/pgclient/impl/QueryResultHandler<TR;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;>;)Lio/reactiverse/pgclient/PgPreparedQuery;
    MethodParameters:
               Name  Flags
      args           
      fetch          
      portal         
      suspended      
      singleton      
      collector      
      resultHandler  
      handler        

  public io.reactiverse.pgclient.PgCursor cursor(io.reactiverse.pgclient.Tuple);
    descriptor: (Lio/reactiverse/pgclient/Tuple;)Lio/reactiverse/pgclient/PgCursor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // io.reactiverse.pgclient.Tuple args
         0: .line 97
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.ps:Lio/reactiverse/pgclient/impl/PreparedStatement;
            aload 1 /* args */
            checkcast java.util.List
            invokevirtual io.reactiverse.pgclient.impl.PreparedStatement.prepare:(Ljava/util/List;)Ljava/lang/String;
            astore 2 /* msg */
        start local 2 // java.lang.String msg
         1: .line 98
            aload 2 /* msg */
            ifnull 3
         2: .line 99
            new java.lang.IllegalArgumentException
            dup
            aload 2 /* msg */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 101
      StackMap locals: java.lang.String
      StackMap stack:
            new io.reactiverse.pgclient.impl.PgCursorImpl
            dup
            aload 0 /* this */
            aload 1 /* args */
            invokespecial io.reactiverse.pgclient.impl.PgCursorImpl.<init>:(Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;Lio/reactiverse/pgclient/Tuple;)V
            areturn
        end local 2 // java.lang.String msg
        end local 1 // io.reactiverse.pgclient.Tuple args
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    4     1  args  Lio/reactiverse/pgclient/Tuple;
            1    4     2   msg  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      args  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
         0: .line 106
            aload 0 /* this */
            invokedynamic handle()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/reactiverse/pgclient/impl/PgPreparedQueryImpl.lambda$2(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.reactiverse.pgclient.impl.PgPreparedQueryImpl.close:(Lio/vertx/core/Handler;)V
         1: .line 108
            return
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;

  public io.reactiverse.pgclient.PgPreparedQuery batch(java.util.List<io.reactiverse.pgclient.Tuple>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.reactiverse.pgclient.PgRowSet>>);
    descriptor: (Ljava/util/List;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // java.util.List argsList
        start local 2 // io.vertx.core.Handler handler
         0: .line 111
            aload 0 /* this */
            aload 1 /* argsList */
            iconst_0
            getstatic io.reactiverse.pgclient.impl.PgRowSetImpl.FACTORY:Ljava/util/function/Function;
            getstatic io.reactiverse.pgclient.impl.PgRowSetImpl.COLLECTOR:Ljava/util/stream/Collector;
            aload 2 /* handler */
            invokevirtual io.reactiverse.pgclient.impl.PgPreparedQueryImpl.batch:(Ljava/util/List;ZLjava/util/function/Function;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.util.List argsList
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    1     1  argsList  Ljava/util/List<Lio/reactiverse/pgclient/Tuple;>;
            0    1     2   handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/reactiverse/pgclient/PgRowSet;>;>;
    Signature: (Ljava/util/List<Lio/reactiverse/pgclient/Tuple;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/reactiverse/pgclient/PgRowSet;>;>;)Lio/reactiverse/pgclient/PgPreparedQuery;
    MethodParameters:
          Name  Flags
      argsList  
      handler   

  public <R> io.reactiverse.pgclient.PgPreparedQuery batch(java.util.List<io.reactiverse.pgclient.Tuple>, java.util.stream.Collector<io.reactiverse.pgclient.Row, ?, R>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.reactiverse.pgclient.PgResult<R>>>);
    descriptor: (Ljava/util/List;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // java.util.List argsList
        start local 2 // java.util.stream.Collector collector
        start local 3 // io.vertx.core.Handler handler
         0: .line 116
            aload 0 /* this */
            aload 1 /* argsList */
            iconst_1
            invokedynamic apply()Ljava/util/function/Function;
              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;)Ljava/lang/Object;
                  io/reactiverse/pgclient/impl/PgResultImpl.<init>(Ljava/lang/Object;)V (8)
                  (Ljava/lang/Object;)Lio/reactiverse/pgclient/impl/PgResultImpl;
            aload 2 /* collector */
            aload 3 /* handler */
            invokevirtual io.reactiverse.pgclient.impl.PgPreparedQueryImpl.batch:(Ljava/util/List;ZLjava/util/function/Function;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
            areturn
        end local 3 // io.vertx.core.Handler handler
        end local 2 // java.util.stream.Collector collector
        end local 1 // java.util.List argsList
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    1     1   argsList  Ljava/util/List<Lio/reactiverse/pgclient/Tuple;>;
            0    1     2  collector  Ljava/util/stream/Collector<Lio/reactiverse/pgclient/Row;*TR;>;
            0    1     3    handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/reactiverse/pgclient/PgResult<TR;>;>;>;
    Signature: <R:Ljava/lang/Object;>(Ljava/util/List<Lio/reactiverse/pgclient/Tuple;>;Ljava/util/stream/Collector<Lio/reactiverse/pgclient/Row;*TR;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/reactiverse/pgclient/PgResult<TR;>;>;>;)Lio/reactiverse/pgclient/PgPreparedQuery;
    MethodParameters:
           Name  Flags
      argsList   
      collector  
      handler    

  private <R1, R2 extends io.reactiverse.pgclient.impl.PgResultBase<R1, R2>, R3 extends io.reactiverse.pgclient.PgResult<R1>> io.reactiverse.pgclient.PgPreparedQuery batch(java.util.List<io.reactiverse.pgclient.Tuple>, boolean, java.util.function.Function<R1, R2>, java.util.stream.Collector<io.reactiverse.pgclient.Row, ?, R1>, io.vertx.core.Handler<io.vertx.core.AsyncResult<R3>>);
    descriptor: (Ljava/util/List;ZLjava/util/function/Function;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=9, args_size=6
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // java.util.List argsList
        start local 2 // boolean singleton
        start local 3 // java.util.function.Function factory
        start local 4 // java.util.stream.Collector collector
        start local 5 // io.vertx.core.Handler handler
         0: .line 125
            aload 1 /* argsList */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 7
            goto 6
      StackMap locals: io.reactiverse.pgclient.impl.PgPreparedQueryImpl java.util.List int java.util.function.Function java.util.stream.Collector io.vertx.core.Handler top java.util.Iterator
      StackMap stack:
         1: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.reactiverse.pgclient.Tuple
            astore 6 /* args */
        start local 6 // io.reactiverse.pgclient.Tuple args
         2: .line 126
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.ps:Lio/reactiverse/pgclient/impl/PreparedStatement;
            aload 6 /* args */
            checkcast java.util.List
            invokevirtual io.reactiverse.pgclient.impl.PreparedStatement.prepare:(Ljava/util/List;)Ljava/lang/String;
            astore 8 /* msg */
        start local 8 // java.lang.String msg
         3: .line 127
            aload 8 /* msg */
            ifnull 6
         4: .line 128
            aload 5 /* handler */
            aload 8 /* msg */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 129
            aload 0 /* this */
            areturn
        end local 8 // java.lang.String msg
        end local 6 // io.reactiverse.pgclient.Tuple args
         6: .line 125
      StackMap locals:
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         7: .line 132
            new io.reactiverse.pgclient.impl.PgResultBuilder
            dup
            aload 3 /* factory */
            aload 5 /* handler */
            invokespecial io.reactiverse.pgclient.impl.PgResultBuilder.<init>:(Ljava/util/function/Function;Lio/vertx/core/Handler;)V
            astore 6 /* b */
        start local 6 // io.reactiverse.pgclient.impl.PgResultBuilder b
         8: .line 133
            new io.reactiverse.pgclient.impl.ExtendedBatchQueryCommand
            dup
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.ps:Lio/reactiverse/pgclient/impl/PreparedStatement;
            aload 1 /* argsList */
            iload 2 /* singleton */
            aload 4 /* collector */
            aload 6 /* b */
            invokespecial io.reactiverse.pgclient.impl.ExtendedBatchQueryCommand.<init>:(Lio/reactiverse/pgclient/impl/PreparedStatement;Ljava/util/List;ZLjava/util/stream/Collector;Lio/reactiverse/pgclient/impl/QueryResultHandler;)V
            astore 7 /* cmd */
        start local 7 // io.reactiverse.pgclient.impl.ExtendedBatchQueryCommand cmd
         9: .line 134
            aload 7 /* cmd */
            aload 6 /* b */
            putfield io.reactiverse.pgclient.impl.ExtendedBatchQueryCommand.handler:Lio/vertx/core/Handler;
        10: .line 135
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.conn:Lio/reactiverse/pgclient/impl/Connection;
            aload 7 /* cmd */
            invokeinterface io.reactiverse.pgclient.impl.Connection.schedule:(Lio/reactiverse/pgclient/impl/CommandBase;)V
        11: .line 136
            aload 0 /* this */
            areturn
        end local 7 // io.reactiverse.pgclient.impl.ExtendedBatchQueryCommand cmd
        end local 6 // io.reactiverse.pgclient.impl.PgResultBuilder b
        end local 5 // io.vertx.core.Handler handler
        end local 4 // java.util.stream.Collector collector
        end local 3 // java.util.function.Function factory
        end local 2 // boolean singleton
        end local 1 // java.util.List argsList
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0   12     1   argsList  Ljava/util/List<Lio/reactiverse/pgclient/Tuple;>;
            0   12     2  singleton  Z
            0   12     3    factory  Ljava/util/function/Function<TR1;TR2;>;
            0   12     4  collector  Ljava/util/stream/Collector<Lio/reactiverse/pgclient/Row;*TR1;>;
            0   12     5    handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TR3;>;>;
            2    6     6       args  Lio/reactiverse/pgclient/Tuple;
            3    6     8        msg  Ljava/lang/String;
            8   12     6          b  Lio/reactiverse/pgclient/impl/PgResultBuilder<TR1;TR2;TR3;>;
            9   12     7        cmd  Lio/reactiverse/pgclient/impl/ExtendedBatchQueryCommand;
    Signature: <R1:Ljava/lang/Object;R2:Lio/reactiverse/pgclient/impl/PgResultBase<TR1;TR2;>;R3::Lio/reactiverse/pgclient/PgResult<TR1;>;>(Ljava/util/List<Lio/reactiverse/pgclient/Tuple;>;ZLjava/util/function/Function<TR1;TR2;>;Ljava/util/stream/Collector<Lio/reactiverse/pgclient/Row;*TR1;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TR3;>;>;)Lio/reactiverse/pgclient/PgPreparedQuery;
    MethodParameters:
           Name  Flags
      argsList   
      singleton  
      factory    
      collector  
      handler    

  public io.reactiverse.pgclient.PgStream<io.reactiverse.pgclient.Row> createStream(int, io.reactiverse.pgclient.Tuple);
    descriptor: (ILio/reactiverse/pgclient/Tuple;)Lio/reactiverse/pgclient/PgStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // int fetch
        start local 2 // io.reactiverse.pgclient.Tuple args
         0: .line 141
            new io.reactiverse.pgclient.impl.PgStreamImpl
            dup
            aload 0 /* this */
            iload 1 /* fetch */
            aload 2 /* args */
            invokespecial io.reactiverse.pgclient.impl.PgStreamImpl.<init>:(Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;ILio/reactiverse/pgclient/Tuple;)V
            areturn
        end local 2 // io.reactiverse.pgclient.Tuple args
        end local 1 // int fetch
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    1     1  fetch  I
            0    1     2   args  Lio/reactiverse/pgclient/Tuple;
    Signature: (ILio/reactiverse/pgclient/Tuple;)Lio/reactiverse/pgclient/PgStream<Lio/reactiverse/pgclient/Row;>;
    MethodParameters:
       Name  Flags
      fetch  
      args   

  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=3, args_size=2
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 146
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 5
         1: .line 147
            new io.reactiverse.pgclient.impl.CloseStatementCommand
            dup
            invokespecial io.reactiverse.pgclient.impl.CloseStatementCommand.<init>:()V
            astore 2 /* cmd */
        start local 2 // io.reactiverse.pgclient.impl.CloseStatementCommand cmd
         2: .line 148
            aload 2 /* cmd */
            aload 1 /* completionHandler */
            putfield io.reactiverse.pgclient.impl.CloseStatementCommand.handler:Lio/vertx/core/Handler;
         3: .line 149
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.conn:Lio/reactiverse/pgclient/impl/Connection;
            aload 2 /* cmd */
            invokeinterface io.reactiverse.pgclient.impl.Connection.schedule:(Lio/reactiverse/pgclient/impl/CommandBase;)V
        end local 2 // io.reactiverse.pgclient.impl.CloseStatementCommand cmd
         4: .line 150
            goto 6
         5: .line 151
      StackMap locals:
      StackMap stack:
            aload 1 /* completionHandler */
            ldc "Already closed"
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         6: .line 153
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    7     0               this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    7     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            2    4     2                cmd  Lio/reactiverse/pgclient/impl/CloseStatementCommand;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  void closePortal(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 1 // java.lang.String portal
        start local 2 // io.vertx.core.Handler handler
         0: .line 156
            new io.reactiverse.pgclient.impl.ClosePortalCommand
            dup
            aload 1 /* portal */
            invokespecial io.reactiverse.pgclient.impl.ClosePortalCommand.<init>:(Ljava/lang/String;)V
            astore 3 /* cmd */
        start local 3 // io.reactiverse.pgclient.impl.ClosePortalCommand cmd
         1: .line 157
            aload 3 /* cmd */
            aload 2 /* handler */
            putfield io.reactiverse.pgclient.impl.ClosePortalCommand.handler:Lio/vertx/core/Handler;
         2: .line 158
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.PgPreparedQueryImpl.conn:Lio/reactiverse/pgclient/impl/Connection;
            aload 3 /* cmd */
            invokeinterface io.reactiverse.pgclient.impl.Connection.schedule:(Lio/reactiverse/pgclient/impl/CommandBase;)V
         3: .line 159
            return
        end local 3 // io.reactiverse.pgclient.impl.ClosePortalCommand cmd
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String portal
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    4     1   portal  Ljava/lang/String;
            0    4     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            1    4     3      cmd  Lio/reactiverse/pgclient/impl/ClosePortalCommand;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      portal   
      handler  

  private void lambda$1(io.reactiverse.pgclient.Tuple, int, java.lang.String, boolean, boolean, java.util.stream.Collector, io.reactiverse.pgclient.impl.QueryResultHandler, io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/reactiverse/pgclient/Tuple;ILjava/lang/String;ZZLjava/util/stream/Collector;Lio/reactiverse/pgclient/impl/QueryResultHandler;Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=9, locals=10, args_size=10
        start local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
        start local 9 // java.lang.Void v
         0: .line 90
            aload 0 /* this */
            aload 1
            iload 2
            aload 3
            iload 4
            iload 5
            aload 6
            aload 7
            aload 8
            invokevirtual io.reactiverse.pgclient.impl.PgPreparedQueryImpl.execute:(Lio/reactiverse/pgclient/Tuple;ILjava/lang/String;ZZLjava/util/stream/Collector;Lio/reactiverse/pgclient/impl/QueryResultHandler;Lio/vertx/core/Handler;)Lio/reactiverse/pgclient/PgPreparedQuery;
            return
        end local 9 // java.lang.Void v
        end local 0 // io.reactiverse.pgclient.impl.PgPreparedQueryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactiverse/pgclient/impl/PgPreparedQueryImpl;
            0    1     9     v  Ljava/lang/Void;

  private static void lambda$2(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult ar
         0: .line 107
            return
        end local 0 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
}
SourceFile: "PgPreparedQueryImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles