public interface io.vertx.pgclient.PgConnection extends io.vertx.sqlclient.SqlConnection
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.pgclient.PgConnection
  super_class: java.lang.Object
{
  public static void connect(io.vertx.core.Vertx, io.vertx.pgclient.PgConnectOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.pgclient.PgConnection>>);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/pgclient/PgConnectOptions;Lio/vertx/core/Handler;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // io.vertx.pgclient.PgConnectOptions options
        start local 2 // io.vertx.core.Handler handler
         0: .line 55
            aload 0 /* vertx */
            aload 1 /* options */
            aload 2 /* handler */
            invokestatic io.vertx.pgclient.impl.PgConnectionImpl.connect:(Lio/vertx/core/Vertx;Lio/vertx/pgclient/PgConnectOptions;Lio/vertx/core/Handler;)V
         1: .line 56
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.pgclient.PgConnectOptions options
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0    vertx  Lio/vertx/core/Vertx;
            0    2     1  options  Lio/vertx/pgclient/PgConnectOptions;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/pgclient/PgConnection;>;>;
    Signature: (Lio/vertx/core/Vertx;Lio/vertx/pgclient/PgConnectOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/pgclient/PgConnection;>;>;)V
    MethodParameters:
         Name  Flags
      vertx    
      options  
      handler  

  public static void connect(io.vertx.core.Vertx, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.pgclient.PgConnection>>);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/Handler;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // io.vertx.core.Handler handler
         0: .line 62
            aload 0 /* vertx */
            invokestatic io.vertx.pgclient.PgConnectOptions.fromEnv:()Lio/vertx/pgclient/PgConnectOptions;
            aload 1 /* handler */
            invokestatic io.vertx.pgclient.PgConnection.connect:(Lio/vertx/core/Vertx;Lio/vertx/pgclient/PgConnectOptions;Lio/vertx/core/Handler;)V
         1: .line 63
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0    vertx  Lio/vertx/core/Vertx;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/pgclient/PgConnection;>;>;
    Signature: (Lio/vertx/core/Vertx;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/pgclient/PgConnection;>;>;)V
    MethodParameters:
         Name  Flags
      vertx    
      handler  

  public static void connect(io.vertx.core.Vertx, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.pgclient.PgConnection>>);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // java.lang.String connectionUri
        start local 2 // io.vertx.core.Handler handler
         0: .line 69
            aload 0 /* vertx */
            aload 1 /* connectionUri */
            invokestatic io.vertx.pgclient.PgConnectOptions.fromUri:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            aload 2 /* handler */
            invokestatic io.vertx.pgclient.PgConnection.connect:(Lio/vertx/core/Vertx;Lio/vertx/pgclient/PgConnectOptions;Lio/vertx/core/Handler;)V
         1: .line 70
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String connectionUri
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0          vertx  Lio/vertx/core/Vertx;
            0    2     1  connectionUri  Ljava/lang/String;
            0    2     2        handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/pgclient/PgConnection;>;>;
    Signature: (Lio/vertx/core/Vertx;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/pgclient/PgConnection;>;>;)V
    MethodParameters:
               Name  Flags
      vertx          
      connectionUri  
      handler        

  public abstract io.vertx.pgclient.PgConnection notificationHandler(io.vertx.core.Handler<io.vertx.pgclient.PgNotification>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/pgclient/PgNotification;>;)Lio/vertx/pgclient/PgConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.pgclient.PgConnection cancelRequest(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/pgclient/PgConnection;
    MethodParameters:
         Name  Flags
      handler  

  public abstract int processId();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int secretKey();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.pgclient.PgConnection prepare(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.PreparedQuery>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/PreparedQuery;>;>;)Lio/vertx/pgclient/PgConnection;
    MethodParameters:
         Name  Flags
      sql      
      handler  

  public abstract io.vertx.pgclient.PgConnection exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/pgclient/PgConnection;
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.pgclient.PgConnection closeHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/pgclient/PgConnection;
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.pgclient.PgConnection preparedQuery(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.RowSet>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/RowSet;>;>;)Lio/vertx/pgclient/PgConnection;
    MethodParameters:
         Name  Flags
      sql      
      handler  

  public abstract <R> io.vertx.pgclient.PgConnection preparedQuery(java.lang.String, java.util.stream.Collector<io.vertx.sqlclient.Row, ?, R>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.SqlResult<R>>>);
    descriptor: (Ljava/lang/String;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <R:Ljava/lang/Object;>(Ljava/lang/String;Ljava/util/stream/Collector<Lio/vertx/sqlclient/Row;*TR;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/SqlResult<TR;>;>;>;)Lio/vertx/pgclient/PgConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
           Name  Flags
      sql        
      collector  
      handler    

  public abstract io.vertx.pgclient.PgConnection query(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.RowSet>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/RowSet;>;>;)Lio/vertx/pgclient/PgConnection;
    MethodParameters:
         Name  Flags
      sql      
      handler  

  public abstract <R> io.vertx.pgclient.PgConnection query(java.lang.String, java.util.stream.Collector<io.vertx.sqlclient.Row, ?, R>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.SqlResult<R>>>);
    descriptor: (Ljava/lang/String;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <R:Ljava/lang/Object;>(Ljava/lang/String;Ljava/util/stream/Collector<Lio/vertx/sqlclient/Row;*TR;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/SqlResult<TR;>;>;>;)Lio/vertx/pgclient/PgConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
           Name  Flags
      sql        
      collector  
      handler    

  public abstract io.vertx.pgclient.PgConnection preparedQuery(java.lang.String, io.vertx.sqlclient.Tuple, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.RowSet>>);
    descriptor: (Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/RowSet;>;>;)Lio/vertx/pgclient/PgConnection;
    MethodParameters:
           Name  Flags
      sql        
      arguments  
      handler    

  public abstract <R> io.vertx.pgclient.PgConnection preparedQuery(java.lang.String, io.vertx.sqlclient.Tuple, java.util.stream.Collector<io.vertx.sqlclient.Row, ?, R>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.SqlResult<R>>>);
    descriptor: (Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <R:Ljava/lang/Object;>(Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Ljava/util/stream/Collector<Lio/vertx/sqlclient/Row;*TR;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/SqlResult<TR;>;>;>;)Lio/vertx/pgclient/PgConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
           Name  Flags
      sql        
      arguments  
      collector  
      handler    

  public abstract io.vertx.pgclient.PgConnection preparedBatch(java.lang.String, java.util.List<io.vertx.sqlclient.Tuple>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.RowSet>>);
    descriptor: (Ljava/lang/String;Ljava/util/List;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;Ljava/util/List<Lio/vertx/sqlclient/Tuple;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/RowSet;>;>;)Lio/vertx/pgclient/PgConnection;
    MethodParameters:
         Name  Flags
      sql      
      batch    
      handler  

  public abstract <R> io.vertx.pgclient.PgConnection preparedBatch(java.lang.String, java.util.List<io.vertx.sqlclient.Tuple>, java.util.stream.Collector<io.vertx.sqlclient.Row, ?, R>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.sqlclient.SqlResult<R>>>);
    descriptor: (Ljava/lang/String;Ljava/util/List;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <R:Ljava/lang/Object;>(Ljava/lang/String;Ljava/util/List<Lio/vertx/sqlclient/Tuple;>;Ljava/util/stream/Collector<Lio/vertx/sqlclient/Row;*TR;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/SqlResult<TR;>;>;>;)Lio/vertx/pgclient/PgConnection;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
           Name  Flags
      sql        
      batch      
      collector  
      handler    

  public io.vertx.sqlclient.SqlClient preparedQuery(java.lang.String, io.vertx.sqlclient.Tuple, java.util.stream.Collector, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlClient;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=5
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            checkcast java.util.stream.Collector
            aload 4
            checkcast io.vertx.core.Handler
            invokeinterface io.vertx.pgclient.PgConnection.preparedQuery:(Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection preparedQuery(java.lang.String, io.vertx.sqlclient.Tuple, java.util.stream.Collector, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=5
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            checkcast java.util.stream.Collector
            aload 4
            checkcast io.vertx.core.Handler
            invokeinterface io.vertx.pgclient.PgConnection.preparedQuery:(Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlClient preparedQuery(java.lang.String, io.vertx.sqlclient.Tuple, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlClient;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            invokeinterface io.vertx.pgclient.PgConnection.preparedQuery:(Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection preparedQuery(java.lang.String, io.vertx.sqlclient.Tuple, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            invokeinterface io.vertx.pgclient.PgConnection.preparedQuery:(Ljava/lang/String;Lio/vertx/sqlclient/Tuple;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlClient preparedQuery(java.lang.String, java.util.stream.Collector, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlClient;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast java.util.stream.Collector
            aload 3
            checkcast io.vertx.core.Handler
            invokeinterface io.vertx.pgclient.PgConnection.preparedQuery:(Ljava/lang/String;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection preparedQuery(java.lang.String, java.util.stream.Collector, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast java.util.stream.Collector
            aload 3
            checkcast io.vertx.core.Handler
            invokeinterface io.vertx.pgclient.PgConnection.preparedQuery:(Ljava/lang/String;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlClient preparedQuery(java.lang.String, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlClient;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokeinterface io.vertx.pgclient.PgConnection.preparedQuery:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection preparedQuery(java.lang.String, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokeinterface io.vertx.pgclient.PgConnection.preparedQuery:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection closeHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface io.vertx.pgclient.PgConnection.closeHandler:(Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection prepare(java.lang.String, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokeinterface io.vertx.pgclient.PgConnection.prepare:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlClient query(java.lang.String, java.util.stream.Collector, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlClient;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast java.util.stream.Collector
            aload 3
            checkcast io.vertx.core.Handler
            invokeinterface io.vertx.pgclient.PgConnection.query:(Ljava/lang/String;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection query(java.lang.String, java.util.stream.Collector, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast java.util.stream.Collector
            aload 3
            checkcast io.vertx.core.Handler
            invokeinterface io.vertx.pgclient.PgConnection.query:(Ljava/lang/String;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlClient query(java.lang.String, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlClient;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokeinterface io.vertx.pgclient.PgConnection.query:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection query(java.lang.String, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokeinterface io.vertx.pgclient.PgConnection.query:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlClient preparedBatch(java.lang.String, java.util.List, java.util.stream.Collector, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Ljava/util/List;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlClient;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=5
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            checkcast java.util.stream.Collector
            aload 4
            checkcast io.vertx.core.Handler
            invokeinterface io.vertx.pgclient.PgConnection.preparedBatch:(Ljava/lang/String;Ljava/util/List;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection preparedBatch(java.lang.String, java.util.List, java.util.stream.Collector, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Ljava/util/List;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=5
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            checkcast java.util.stream.Collector
            aload 4
            checkcast io.vertx.core.Handler
            invokeinterface io.vertx.pgclient.PgConnection.preparedBatch:(Ljava/lang/String;Ljava/util/List;Ljava/util/stream/Collector;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlClient preparedBatch(java.lang.String, java.util.List, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Ljava/util/List;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlClient;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            invokeinterface io.vertx.pgclient.PgConnection.preparedBatch:(Ljava/lang/String;Ljava/util/List;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection preparedBatch(java.lang.String, java.util.List, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Ljava/util/List;Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            invokeinterface io.vertx.pgclient.PgConnection.preparedBatch:(Ljava/lang/String;Ljava/util/List;Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnection exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/sqlclient/SqlConnection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface io.vertx.pgclient.PgConnection.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/pgclient/PgConnection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "PgConnection.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()