class io.vertx.pgclient.impl.PgConnectionFactory extends io.vertx.sqlclient.impl.SqlConnectionFactoryBase implements io.vertx.sqlclient.impl.ConnectionFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.pgclient.impl.PgConnectionFactory
  super_class: io.vertx.sqlclient.impl.SqlConnectionFactoryBase
{
  private io.vertx.pgclient.SslMode sslMode;
    descriptor: Lio/vertx/pgclient/SslMode;
    flags: (0x0002) ACC_PRIVATE

  private int pipeliningLimit;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private static volatile int[] $SWITCH_TABLE$io$vertx$pgclient$SslMode;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  void <init>(io.vertx.core.impl.ContextInternal, io.vertx.pgclient.PgConnectOptions);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/pgclient/PgConnectOptions;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // io.vertx.core.impl.ContextInternal context
        start local 2 // io.vertx.pgclient.PgConnectOptions options
         0: .line 45
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* options */
            invokespecial io.vertx.sqlclient.impl.SqlConnectionFactoryBase.<init>:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/sqlclient/SqlConnectOptions;)V
         1: .line 46
            return
        end local 2 // io.vertx.pgclient.PgConnectOptions options
        end local 1 // io.vertx.core.impl.ContextInternal context
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    2     1  context  Lio/vertx/core/impl/ContextInternal;
            0    2     2  options  Lio/vertx/pgclient/PgConnectOptions;
    MethodParameters:
         Name  Flags
      context  
      options  

  protected void initializeConfiguration(io.vertx.sqlclient.SqlConnectOptions);
    descriptor: (Lio/vertx/sqlclient/SqlConnectOptions;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // io.vertx.sqlclient.SqlConnectOptions connectOptions
         0: .line 50
            aload 1 /* connectOptions */
            checkcast io.vertx.pgclient.PgConnectOptions
            astore 2 /* options */
        start local 2 // io.vertx.pgclient.PgConnectOptions options
         1: .line 51
            aload 0 /* this */
            aload 2 /* options */
            invokevirtual io.vertx.pgclient.PgConnectOptions.getPipeliningLimit:()I
            putfield io.vertx.pgclient.impl.PgConnectionFactory.pipeliningLimit:I
         2: .line 52
            aload 0 /* this */
            aload 2 /* options */
            invokevirtual io.vertx.pgclient.PgConnectOptions.isUsingDomainSocket:()Z
            ifeq 3
            getstatic io.vertx.pgclient.SslMode.DISABLE:Lio/vertx/pgclient/SslMode;
            goto 4
      StackMap locals: io.vertx.pgclient.impl.PgConnectionFactory io.vertx.sqlclient.SqlConnectOptions io.vertx.pgclient.PgConnectOptions
      StackMap stack: io.vertx.pgclient.impl.PgConnectionFactory
         3: aload 2 /* options */
            invokevirtual io.vertx.pgclient.PgConnectOptions.getSslMode:()Lio/vertx/pgclient/SslMode;
      StackMap locals: io.vertx.pgclient.impl.PgConnectionFactory io.vertx.sqlclient.SqlConnectOptions io.vertx.pgclient.PgConnectOptions
      StackMap stack: io.vertx.pgclient.impl.PgConnectionFactory io.vertx.pgclient.SslMode
         4: putfield io.vertx.pgclient.impl.PgConnectionFactory.sslMode:Lio/vertx/pgclient/SslMode;
         5: .line 55
            invokestatic io.vertx.pgclient.impl.PgConnectionFactory.$SWITCH_TABLE$io$vertx$pgclient$SslMode:()[I
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.sslMode:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.SslMode.ordinal:()I
            iaload
            tableswitch { // 5 - 6
                    5: 9
                    6: 6
              default: 12
          }
         6: .line 57
      StackMap locals:
      StackMap stack:
            aload 2 /* options */
            invokevirtual io.vertx.pgclient.PgConnectOptions.getHostnameVerificationAlgorithm:()Ljava/lang/String;
            astore 3 /* hostnameVerificationAlgorithm */
        start local 3 // java.lang.String hostnameVerificationAlgorithm
         7: .line 58
            aload 3 /* hostnameVerificationAlgorithm */
            ifnull 8
            aload 3 /* hostnameVerificationAlgorithm */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 9
         8: .line 59
      StackMap locals: java.lang.String
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Host verification algorithm must be specified under verify-full sslmode"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.String hostnameVerificationAlgorithm
         9: .line 62
      StackMap locals:
      StackMap stack:
            aload 2 /* options */
            invokevirtual io.vertx.pgclient.PgConnectOptions.getTrustOptions:()Lio/vertx/core/net/TrustOptions;
            astore 4 /* trustOptions */
        start local 4 // io.vertx.core.net.TrustOptions trustOptions
        10: .line 63
            aload 4 /* trustOptions */
            ifnonnull 12
        11: .line 64
            new java.lang.IllegalArgumentException
            dup
            ldc "Trust options must be specified under verify-full or verify-ca sslmode"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // io.vertx.core.net.TrustOptions trustOptions
        12: .line 68
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.pgclient.PgConnectOptions options
        end local 1 // io.vertx.sqlclient.SqlConnectOptions connectOptions
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot                           Name  Signature
            0   13     0                           this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0   13     1                 connectOptions  Lio/vertx/sqlclient/SqlConnectOptions;
            1   13     2                        options  Lio/vertx/pgclient/PgConnectOptions;
            7    9     3  hostnameVerificationAlgorithm  Ljava/lang/String;
           10   12     4                   trustOptions  Lio/vertx/core/net/TrustOptions;
    MethodParameters:
                Name  Flags
      connectOptions  

  protected void configureNetClientOptions(io.vertx.core.net.NetClientOptions);
    descriptor: (Lio/vertx/core/net/NetClientOptions;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // io.vertx.core.net.NetClientOptions netClientOptions
         0: .line 72
            aload 1 /* netClientOptions */
            iconst_0
            invokevirtual io.vertx.core.net.NetClientOptions.setSsl:(Z)Lio/vertx/core/net/NetClientOptions;
            pop
         1: .line 73
            return
        end local 1 // io.vertx.core.net.NetClientOptions netClientOptions
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    2     1  netClientOptions  Lio/vertx/core/net/NetClientOptions;
    MethodParameters:
                  Name  Flags
      netClientOptions  

  protected void doConnectInternal(io.vertx.core.Promise<io.vertx.sqlclient.impl.Connection>);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // io.vertx.core.Promise promise
         0: .line 77
            aload 0 /* this */
            invokevirtual io.vertx.pgclient.impl.PgConnectionFactory.doConnect:()Lio/vertx/core/Future;
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/pgclient/impl/PgConnectionFactory;)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/vertx/pgclient/impl/PgConnectionFactory.lambda$0(Lio/vertx/sqlclient/impl/Connection;)Lio/vertx/core/Future; (7)
                  (Lio/vertx/sqlclient/impl/Connection;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.flatMap:(Ljava/util/function/Function;)Lio/vertx/core/Future;
         1: .line 82
            aload 1 /* promise */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 83
            return
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    3     1  promise  Lio/vertx/core/Promise<Lio/vertx/sqlclient/impl/Connection;>;
    Signature: (Lio/vertx/core/Promise<Lio/vertx/sqlclient/impl/Connection;>;)V
    MethodParameters:
         Name  Flags
      promise  

  public void cancelRequest(int, int, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (IILio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // int processId
        start local 2 // int secretKey
        start local 3 // io.vertx.core.Handler handler
         0: .line 86
            aload 0 /* this */
            invokevirtual io.vertx.pgclient.impl.PgConnectionFactory.doConnect:()Lio/vertx/core/Future;
            iload 1 /* processId */
            iload 2 /* secretKey */
            aload 3 /* handler */
            invokedynamic handle(IILio/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/pgclient/impl/PgConnectionFactory.lambda$2(IILio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 94
            return
        end local 3 // io.vertx.core.Handler handler
        end local 2 // int secretKey
        end local 1 // int processId
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    2     1  processId  I
            0    2     2  secretKey  I
            0    2     3    handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (IILio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
           Name  Flags
      processId  
      secretKey  
      handler    

  private io.vertx.core.Future<io.vertx.sqlclient.impl.Connection> doConnect();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
         0: .line 98
            invokestatic io.vertx.pgclient.impl.PgConnectionFactory.$SWITCH_TABLE$io$vertx$pgclient$SslMode:()[I
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.sslMode:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.SslMode.ordinal:()I
            iaload
            tableswitch { // 1 - 6
                    1: 1
                    2: 3
                    3: 5
                    4: 7
                    5: 7
                    6: 7
              default: 9
          }
         1: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual io.vertx.pgclient.impl.PgConnectionFactory.doConnect:(Z)Lio/vertx/core/Future;
            astore 1 /* connFuture */
        start local 1 // io.vertx.core.Future connFuture
         2: .line 101
            goto 10
        end local 1 // io.vertx.core.Future connFuture
         3: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual io.vertx.pgclient.impl.PgConnectionFactory.doConnect:(Z)Lio/vertx/core/Future;
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/pgclient/impl/PgConnectionFactory;)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/vertx/pgclient/impl/PgConnectionFactory.lambda$3(Ljava/lang/Throwable;)Lio/vertx/core/Future; (7)
                  (Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.recover:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            astore 1 /* connFuture */
        start local 1 // io.vertx.core.Future connFuture
         4: .line 104
            goto 10
        end local 1 // io.vertx.core.Future connFuture
         5: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual io.vertx.pgclient.impl.PgConnectionFactory.doConnect:(Z)Lio/vertx/core/Future;
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/pgclient/impl/PgConnectionFactory;)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/vertx/pgclient/impl/PgConnectionFactory.lambda$4(Ljava/lang/Throwable;)Lio/vertx/core/Future; (7)
                  (Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.recover:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            astore 1 /* connFuture */
        start local 1 // io.vertx.core.Future connFuture
         6: .line 107
            goto 10
        end local 1 // io.vertx.core.Future connFuture
         7: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual io.vertx.pgclient.impl.PgConnectionFactory.doConnect:(Z)Lio/vertx/core/Future;
            astore 1 /* connFuture */
        start local 1 // io.vertx.core.Future connFuture
         8: .line 112
            goto 10
        end local 1 // io.vertx.core.Future connFuture
         9: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.context:Lio/vertx/core/impl/ContextInternal;
            new java.lang.IllegalArgumentException
            dup
            ldc "Unsupported SSL mode"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            invokeinterface io.vertx.core.impl.ContextInternal.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            areturn
        start local 1 // io.vertx.core.Future connFuture
        10: .line 116
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            aload 1 /* connFuture */
            areturn
        end local 1 // io.vertx.core.Future connFuture
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            2    3     1  connFuture  Lio/vertx/core/Future<Lio/vertx/sqlclient/impl/Connection;>;
            4    5     1  connFuture  Lio/vertx/core/Future<Lio/vertx/sqlclient/impl/Connection;>;
            6    7     1  connFuture  Lio/vertx/core/Future<Lio/vertx/sqlclient/impl/Connection;>;
            8    9     1  connFuture  Lio/vertx/core/Future<Lio/vertx/sqlclient/impl/Connection;>;
           10   11     1  connFuture  Lio/vertx/core/Future<Lio/vertx/sqlclient/impl/Connection;>;
    Signature: ()Lio/vertx/core/Future<Lio/vertx/sqlclient/impl/Connection;>;

  private io.vertx.core.Future<io.vertx.sqlclient.impl.Connection> doConnect(boolean);
    descriptor: (Z)Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // boolean ssl
         0: .line 122
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.netClient:Lio/vertx/core/net/NetClient;
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.socketAddress:Lio/vertx/core/net/SocketAddress;
            aconst_null
            invokeinterface io.vertx.core.net.NetClient.connect:(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;)Lio/vertx/core/Future;
            astore 2 /* soFut */
        start local 2 // io.vertx.core.Future soFut
         1: .line 123
            goto 4
        end local 2 // io.vertx.core.Future soFut
      StackMap locals:
      StackMap stack: java.lang.Exception
         2: astore 3 /* e */
        start local 3 // java.lang.Exception e
         3: .line 125
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* e */
            invokeinterface io.vertx.core.impl.ContextInternal.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            areturn
        end local 3 // java.lang.Exception e
        start local 2 // io.vertx.core.Future soFut
         4: .line 127
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            aload 2 /* soFut */
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/pgclient/impl/PgConnectionFactory;)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/vertx/pgclient/impl/PgConnectionFactory.lambda$5(Lio/vertx/core/net/NetSocket;)Lio/vertx/sqlclient/impl/Connection; (7)
                  (Lio/vertx/core/net/NetSocket;)Lio/vertx/sqlclient/impl/Connection;
            invokeinterface io.vertx.core.Future.map:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            astore 3 /* connFut */
        start local 3 // io.vertx.core.Future connFut
         5: .line 128
            iload 1 /* ssl */
            ifeq 7
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.socketAddress:Lio/vertx/core/net/SocketAddress;
            invokeinterface io.vertx.core.net.SocketAddress.isDomainSocket:()Z
            ifne 7
         6: .line 130
            aload 3 /* connFut */
            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/vertx/pgclient/impl/PgConnectionFactory.lambda$6(Lio/vertx/sqlclient/impl/Connection;)Lio/vertx/core/Future; (6)
                  (Lio/vertx/sqlclient/impl/Connection;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.flatMap:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            astore 3 /* connFut */
         7: .line 141
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            aload 3 /* connFut */
            areturn
        end local 3 // io.vertx.core.Future connFut
        end local 2 // io.vertx.core.Future soFut
        end local 1 // boolean ssl
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    8     1      ssl  Z
            1    2     2    soFut  Lio/vertx/core/Future<Lio/vertx/core/net/NetSocket;>;
            4    8     2    soFut  Lio/vertx/core/Future<Lio/vertx/core/net/NetSocket;>;
            3    4     3        e  Ljava/lang/Exception;
            5    8     3  connFut  Lio/vertx/core/Future<Lio/vertx/sqlclient/impl/Connection;>;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception
    Signature: (Z)Lio/vertx/core/Future<Lio/vertx/sqlclient/impl/Connection;>;
    MethodParameters:
      Name  Flags
      ssl   

  private io.vertx.pgclient.impl.PgSocketConnection newSocketConnection(io.vertx.core.net.impl.NetSocketInternal);
    descriptor: (Lio/vertx/core/net/impl/NetSocketInternal;)Lio/vertx/pgclient/impl/PgSocketConnection;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // io.vertx.core.net.impl.NetSocketInternal socket
         0: .line 145
            new io.vertx.pgclient.impl.PgSocketConnection
            dup
            aload 1 /* socket */
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.cachePreparedStatements:Z
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.preparedStatementCacheSize:I
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.preparedStatementCacheSqlFilter:Ljava/util/function/Predicate;
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.pipeliningLimit:I
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.context:Lio/vertx/core/impl/ContextInternal;
            invokespecial io.vertx.pgclient.impl.PgSocketConnection.<init>:(Lio/vertx/core/net/impl/NetSocketInternal;ZILjava/util/function/Predicate;ILio/vertx/core/impl/ContextInternal;)V
            areturn
        end local 1 // io.vertx.core.net.impl.NetSocketInternal socket
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    1     1  socket  Lio/vertx/core/net/impl/NetSocketInternal;
    MethodParameters:
        Name  Flags
      socket  

  static int[] $SWITCH_TABLE$io$vertx$pgclient$SslMode();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 39
            getstatic io.vertx.pgclient.impl.PgConnectionFactory.$SWITCH_TABLE$io$vertx$pgclient$SslMode:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic io.vertx.pgclient.SslMode.values:()[Lio/vertx/pgclient/SslMode;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic io.vertx.pgclient.SslMode.ALLOW:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.SslMode.ordinal:()I
            iconst_2
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic io.vertx.pgclient.SslMode.DISABLE:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.SslMode.ordinal:()I
            iconst_1
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic io.vertx.pgclient.SslMode.PREFER:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.SslMode.ordinal:()I
            iconst_3
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic io.vertx.pgclient.SslMode.REQUIRE:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.SslMode.ordinal:()I
            iconst_4
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            getstatic io.vertx.pgclient.SslMode.VERIFY_CA:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.SslMode.ordinal:()I
            iconst_5
            iastore
        15: goto 17
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        16: pop
      StackMap locals:
      StackMap stack:
        17: aload 0
            getstatic io.vertx.pgclient.SslMode.VERIFY_FULL:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.SslMode.ordinal:()I
            bipush 6
            iastore
        18: goto 20
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        19: pop
      StackMap locals:
      StackMap stack:
        20: aload 0
            dup
            putstatic io.vertx.pgclient.impl.PgConnectionFactory.$SWITCH_TABLE$io$vertx$pgclient$SslMode:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
          14    15      16  Class java.lang.NoSuchFieldError
          17    18      19  Class java.lang.NoSuchFieldError

  private io.vertx.core.Future lambda$0(io.vertx.sqlclient.impl.Connection);
    descriptor: (Lio/vertx/sqlclient/impl/Connection;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // io.vertx.sqlclient.impl.Connection conn
         0: .line 78
            aload 1 /* conn */
            checkcast io.vertx.pgclient.impl.PgSocketConnection
            astore 2 /* socket */
        start local 2 // io.vertx.pgclient.impl.PgSocketConnection socket
         1: .line 79
            aload 2 /* socket */
            invokevirtual io.vertx.pgclient.impl.PgSocketConnection.init:()V
         2: .line 80
            aload 0 /* this */
            aload 2 /* socket */
            invokedynamic handle(Lio/vertx/pgclient/impl/PgConnectionFactory;Lio/vertx/pgclient/impl/PgSocketConnection;)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/pgclient/impl/PgConnectionFactory.lambda$1(Lio/vertx/pgclient/impl/PgSocketConnection;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
            invokestatic io.vertx.core.Future.future:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         3: .line 81
            aload 1 /* conn */
            invokeinterface io.vertx.core.Future.map:(Ljava/lang/Object;)Lio/vertx/core/Future;
         4: .line 80
            areturn
        end local 2 // io.vertx.pgclient.impl.PgSocketConnection socket
        end local 1 // io.vertx.sqlclient.impl.Connection conn
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    5     1    conn  Lio/vertx/sqlclient/impl/Connection;
            1    5     2  socket  Lio/vertx/pgclient/impl/PgSocketConnection;

  private static void lambda$2(int, int, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (IILio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=5, args_size=4
        start local 3 // io.vertx.core.AsyncResult ar
         0: .line 87
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 4
         1: .line 88
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.pgclient.impl.PgSocketConnection
            astore 4 /* conn */
        start local 4 // io.vertx.pgclient.impl.PgSocketConnection conn
         2: .line 89
            aload 4 /* conn */
            iload 0
            iload 1
            aload 2
            invokevirtual io.vertx.pgclient.impl.PgSocketConnection.sendCancelRequestMessage:(IILio/vertx/core/Handler;)V
        end local 4 // io.vertx.pgclient.impl.PgSocketConnection conn
         3: .line 90
            goto 5
         4: .line 91
      StackMap locals:
      StackMap stack:
            aload 2
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 93
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     3    ar  Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/impl/Connection;>;
            2    3     4  conn  Lio/vertx/pgclient/impl/PgSocketConnection;

  private io.vertx.core.Future lambda$3(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // java.lang.Throwable err
         0: .line 103
            aload 0 /* this */
            iconst_1
            invokevirtual io.vertx.pgclient.impl.PgConnectionFactory.doConnect:(Z)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.Throwable err
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    1     1   err  Ljava/lang/Throwable;

  private io.vertx.core.Future lambda$4(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // java.lang.Throwable err
         0: .line 106
            aload 0 /* this */
            iconst_0
            invokevirtual io.vertx.pgclient.impl.PgConnectionFactory.doConnect:(Z)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.Throwable err
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    1     1   err  Ljava/lang/Throwable;

  private io.vertx.sqlclient.impl.Connection lambda$5(io.vertx.core.net.NetSocket);
    descriptor: (Lio/vertx/core/net/NetSocket;)Lio/vertx/sqlclient/impl/Connection;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 1 // io.vertx.core.net.NetSocket so
         0: .line 127
            aload 0 /* this */
            aload 1 /* so */
            checkcast io.vertx.core.net.impl.NetSocketInternal
            invokevirtual io.vertx.pgclient.impl.PgConnectionFactory.newSocketConnection:(Lio/vertx/core/net/impl/NetSocketInternal;)Lio/vertx/pgclient/impl/PgSocketConnection;
            areturn
        end local 1 // io.vertx.core.net.NetSocket so
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    1     1    so  Lio/vertx/core/net/NetSocket;

  private static io.vertx.core.Future lambda$6(io.vertx.sqlclient.impl.Connection);
    descriptor: (Lio/vertx/sqlclient/impl/Connection;)Lio/vertx/core/Future;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.impl.Connection conn
         0: .line 130
            aload 0 /* conn */
            invokedynamic handle(Lio/vertx/sqlclient/impl/Connection;)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/pgclient/impl/PgConnectionFactory.lambda$7(Lio/vertx/sqlclient/impl/Connection;Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
            invokestatic io.vertx.core.Future.future:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         1: .line 139
            areturn
        end local 0 // io.vertx.sqlclient.impl.Connection conn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  conn  Lio/vertx/sqlclient/impl/Connection;

  private void lambda$1(io.vertx.pgclient.impl.PgSocketConnection, io.vertx.core.Promise);
    descriptor: (Lio/vertx/pgclient/impl/PgSocketConnection;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
        start local 2 // io.vertx.core.Promise p
         0: .line 80
            aload 1
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.username:Ljava/lang/String;
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.password:Ljava/lang/String;
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.database:Ljava/lang/String;
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.PgConnectionFactory.properties:Ljava/util/Map;
            aload 2 /* p */
            invokevirtual io.vertx.pgclient.impl.PgSocketConnection.sendStartupMessage:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Lio/vertx/core/Promise;)V
            return
        end local 2 // io.vertx.core.Promise p
        end local 0 // io.vertx.pgclient.impl.PgConnectionFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/pgclient/impl/PgConnectionFactory;
            0    1     2     p  Lio/vertx/core/Promise<Lio/vertx/sqlclient/impl/Connection;>;

  private static void lambda$7(io.vertx.sqlclient.impl.Connection, io.vertx.core.Promise);
    descriptor: (Lio/vertx/sqlclient/impl/Connection;Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
        start local 1 // io.vertx.core.Promise p
         0: .line 131
            aload 0
            checkcast io.vertx.pgclient.impl.PgSocketConnection
            astore 2 /* socket */
        start local 2 // io.vertx.pgclient.impl.PgSocketConnection socket
         1: .line 132
            aload 2 /* socket */
            aload 1 /* p */
            aload 0
            invokedynamic handle(Lio/vertx/core/Promise;Lio/vertx/sqlclient/impl/Connection;)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/pgclient/impl/PgConnectionFactory.lambda$8(Lio/vertx/core/Promise;Lio/vertx/sqlclient/impl/Connection;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.pgclient.impl.PgSocketConnection.upgradeToSSLConnection:(Lio/vertx/core/Handler;)V
        end local 2 // io.vertx.pgclient.impl.PgSocketConnection socket
         2: .line 139
            return
        end local 1 // io.vertx.core.Promise p
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     1       p  Lio/vertx/core/Promise<Lio/vertx/sqlclient/impl/Connection;>;
            1    2     2  socket  Lio/vertx/pgclient/impl/PgSocketConnection;

  private static void lambda$8(io.vertx.core.Promise, io.vertx.sqlclient.impl.Connection, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/sqlclient/impl/Connection;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 ar2
         0: .line 133
            aload 2 /* ar2 */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 134
            aload 0
            aload 1
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         2: .line 135
            goto 4
         3: .line 136
      StackMap locals:
      StackMap stack:
            aload 0
            aload 2 /* ar2 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         4: .line 138
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult ar2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     2   ar2  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
}
SourceFile: "PgConnectionFactory.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles