public class examples.MySQLPostgreSQLExamples
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: examples.MySQLPostgreSQLExamples
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // examples.MySQLPostgreSQLExamples this
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // examples.MySQLPostgreSQLExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/MySQLPostgreSQLExamples;

  public void exampleCreateDefault(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // examples.MySQLPostgreSQLExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 36
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "host"
            ldc "mymysqldb.mycompany"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 2 /* mySQLClientConfig */
        start local 2 // io.vertx.core.json.JsonObject mySQLClientConfig
         1: .line 37
            aload 1 /* vertx */
            aload 2 /* mySQLClientConfig */
            invokestatic io.vertx.ext.asyncsql.MySQLClient.createShared:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/asyncsql/AsyncSQLClient;
            pop
         2: .line 41
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "host"
            ldc "mypostgresqldb.mycompany"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 3 /* postgreSQLClientConfig */
        start local 3 // io.vertx.core.json.JsonObject postgreSQLClientConfig
         3: .line 42
            aload 1 /* vertx */
            aload 3 /* postgreSQLClientConfig */
            invokestatic io.vertx.ext.asyncsql.PostgreSQLClient.createShared:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/asyncsql/AsyncSQLClient;
            pop
         4: .line 44
            return
        end local 3 // io.vertx.core.json.JsonObject postgreSQLClientConfig
        end local 2 // io.vertx.core.json.JsonObject mySQLClientConfig
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.MySQLPostgreSQLExamples this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    5     0                    this  Lexamples/MySQLPostgreSQLExamples;
            0    5     1                   vertx  Lio/vertx/core/Vertx;
            1    5     2       mySQLClientConfig  Lio/vertx/core/json/JsonObject;
            3    5     3  postgreSQLClientConfig  Lio/vertx/core/json/JsonObject;
    MethodParameters:
       Name  Flags
      vertx  

  public void exampleCreatePoolName(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // examples.MySQLPostgreSQLExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 50
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "host"
            ldc "mymysqldb.mycompany"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 2 /* mySQLClientConfig */
        start local 2 // io.vertx.core.json.JsonObject mySQLClientConfig
         1: .line 51
            aload 1 /* vertx */
            aload 2 /* mySQLClientConfig */
            ldc "MySQLPool1"
            invokestatic io.vertx.ext.asyncsql.MySQLClient.createShared:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;Ljava/lang/String;)Lio/vertx/ext/asyncsql/AsyncSQLClient;
            pop
         2: .line 55
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "host"
            ldc "mypostgresqldb.mycompany"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 3 /* postgreSQLClientConfig */
        start local 3 // io.vertx.core.json.JsonObject postgreSQLClientConfig
         3: .line 56
            aload 1 /* vertx */
            aload 3 /* postgreSQLClientConfig */
            ldc "PostgreSQLPool1"
            invokestatic io.vertx.ext.asyncsql.PostgreSQLClient.createShared:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;Ljava/lang/String;)Lio/vertx/ext/asyncsql/AsyncSQLClient;
            pop
         4: .line 58
            return
        end local 3 // io.vertx.core.json.JsonObject postgreSQLClientConfig
        end local 2 // io.vertx.core.json.JsonObject mySQLClientConfig
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.MySQLPostgreSQLExamples this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    5     0                    this  Lexamples/MySQLPostgreSQLExamples;
            0    5     1                   vertx  Lio/vertx/core/Vertx;
            1    5     2       mySQLClientConfig  Lio/vertx/core/json/JsonObject;
            3    5     3  postgreSQLClientConfig  Lio/vertx/core/json/JsonObject;
    MethodParameters:
       Name  Flags
      vertx  

  public void exampleCreateNonShared(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // examples.MySQLPostgreSQLExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 64
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "host"
            ldc "mymysqldb.mycompany"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 2 /* mySQLClientConfig */
        start local 2 // io.vertx.core.json.JsonObject mySQLClientConfig
         1: .line 65
            aload 1 /* vertx */
            aload 2 /* mySQLClientConfig */
            invokestatic io.vertx.ext.asyncsql.MySQLClient.createNonShared:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/asyncsql/AsyncSQLClient;
            pop
         2: .line 69
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "host"
            ldc "mypostgresqldb.mycompany"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 3 /* postgreSQLClientConfig */
        start local 3 // io.vertx.core.json.JsonObject postgreSQLClientConfig
         3: .line 70
            aload 1 /* vertx */
            aload 3 /* postgreSQLClientConfig */
            invokestatic io.vertx.ext.asyncsql.PostgreSQLClient.createNonShared:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/asyncsql/AsyncSQLClient;
            pop
         4: .line 72
            return
        end local 3 // io.vertx.core.json.JsonObject postgreSQLClientConfig
        end local 2 // io.vertx.core.json.JsonObject mySQLClientConfig
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.MySQLPostgreSQLExamples this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    5     0                    this  Lexamples/MySQLPostgreSQLExamples;
            0    5     1                   vertx  Lio/vertx/core/Vertx;
            1    5     2       mySQLClientConfig  Lio/vertx/core/json/JsonObject;
            3    5     3  postgreSQLClientConfig  Lio/vertx/core/json/JsonObject;
    MethodParameters:
       Name  Flags
      vertx  

  public void example2(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.MySQLPostgreSQLExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 76
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "host"
            ldc "mymysqldb.mycompany"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 2 /* config */
        start local 2 // io.vertx.core.json.JsonObject config
         1: .line 78
            aload 1 /* vertx */
            aload 2 /* config */
            invokestatic io.vertx.ext.asyncsql.MySQLClient.createNonShared:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/asyncsql/AsyncSQLClient;
            pop
         2: .line 80
            return
        end local 2 // io.vertx.core.json.JsonObject config
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.MySQLPostgreSQLExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lexamples/MySQLPostgreSQLExamples;
            0    3     1   vertx  Lio/vertx/core/Vertx;
            1    3     2  config  Lio/vertx/core/json/JsonObject;
    MethodParameters:
       Name  Flags
      vertx  

  public void example3(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.MySQLPostgreSQLExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 84
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "host"
            ldc "mypostgresqldb.mycompany"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 2 /* config */
        start local 2 // io.vertx.core.json.JsonObject config
         1: .line 86
            aload 1 /* vertx */
            aload 2 /* config */
            invokestatic io.vertx.ext.asyncsql.PostgreSQLClient.createNonShared:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/asyncsql/AsyncSQLClient;
            pop
         2: .line 87
            return
        end local 2 // io.vertx.core.json.JsonObject config
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.MySQLPostgreSQLExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lexamples/MySQLPostgreSQLExamples;
            0    3     1   vertx  Lio/vertx/core/Vertx;
            1    3     2  config  Lio/vertx/core/json/JsonObject;
    MethodParameters:
       Name  Flags
      vertx  

  public void example4(io.vertx.ext.sql.SQLClient);
    descriptor: (Lio/vertx/ext/sql/SQLClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.MySQLPostgreSQLExamples this
        start local 1 // io.vertx.ext.sql.SQLClient client
         0: .line 93
            aload 1 /* client */
            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
                  examples/MySQLPostgreSQLExamples.lambda$0(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.ext.sql.SQLClient.getConnection:(Lio/vertx/core/Handler;)Lio/vertx/ext/sql/SQLClient;
            pop
         1: .line 105
            return
        end local 1 // io.vertx.ext.sql.SQLClient client
        end local 0 // examples.MySQLPostgreSQLExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/MySQLPostgreSQLExamples;
            0    2     1  client  Lio/vertx/ext/sql/SQLClient;
    MethodParameters:
        Name  Flags
      client  

  private static void lambda$0(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult res
         0: .line 94
            aload 0 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 2
         1: .line 96
            aload 0 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.ext.sql.SQLConnection
            pop
         2: .line 103
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   res  Lio/vertx/core/AsyncResult<Lio/vertx/ext/sql/SQLConnection;>;
}
SourceFile: "MySQLPostgreSQLExamples.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles