public class examples.ConfigExamples
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: examples.ConfigExamples
  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.ConfigExamples this
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/ConfigExamples;

  public void example1(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // examples.ConfigExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 35
            aload 1 /* vertx */
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;)Lio/vertx/config/ConfigRetriever;
            pop
         1: .line 36
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lexamples/ConfigExamples;
            0    2     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example2(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // examples.ConfigExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 39
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 40
            ldc "http"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 41
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         3: .line 42
            ldc "host"
            ldc "localhost"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            ldc "port"
            sipush 8080
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            ldc "path"
            ldc "/conf"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         4: .line 41
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
         5: .line 39
            astore 2 /* httpStore */
        start local 2 // io.vertx.config.ConfigStoreOptions httpStore
         6: .line 44
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         7: .line 45
            ldc "file"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         8: .line 46
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "path"
            ldc "my-config.json"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
         9: .line 44
            astore 3 /* fileStore */
        start local 3 // io.vertx.config.ConfigStoreOptions fileStore
        10: .line 48
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
            ldc "sys"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
            astore 4 /* sysPropsStore */
        start local 4 // io.vertx.config.ConfigStoreOptions sysPropsStore
        11: .line 51
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
        12: .line 52
            aload 2 /* httpStore */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
            aload 3 /* fileStore */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
            aload 4 /* sysPropsStore */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
        13: .line 51
            astore 5 /* options */
        start local 5 // io.vertx.config.ConfigRetrieverOptions options
        14: .line 54
            aload 1 /* vertx */
            aload 5 /* options */
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            pop
        15: .line 55
            return
        end local 5 // io.vertx.config.ConfigRetrieverOptions options
        end local 4 // io.vertx.config.ConfigStoreOptions sysPropsStore
        end local 3 // io.vertx.config.ConfigStoreOptions fileStore
        end local 2 // io.vertx.config.ConfigStoreOptions httpStore
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   16     0           this  Lexamples/ConfigExamples;
            0   16     1          vertx  Lio/vertx/core/Vertx;
            6   16     2      httpStore  Lio/vertx/config/ConfigStoreOptions;
           10   16     3      fileStore  Lio/vertx/config/ConfigStoreOptions;
           11   16     4  sysPropsStore  Lio/vertx/config/ConfigStoreOptions;
           14   16     5        options  Lio/vertx/config/ConfigRetrieverOptions;
    MethodParameters:
       Name  Flags
      vertx  

  public void example2_optional(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // examples.ConfigExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 58
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 59
            ldc "file"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 60
            iconst_1
            invokevirtual io.vertx.config.ConfigStoreOptions.setOptional:(Z)Lio/vertx/config/ConfigStoreOptions;
         3: .line 61
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "path"
            ldc "my-config.json"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
         4: .line 58
            astore 2 /* fileStore */
        start local 2 // io.vertx.config.ConfigStoreOptions fileStore
         5: .line 62
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
            ldc "sys"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
            astore 3 /* sysPropsStore */
        start local 3 // io.vertx.config.ConfigStoreOptions sysPropsStore
         6: .line 64
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
            aload 2 /* fileStore */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
            aload 3 /* sysPropsStore */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
            astore 4 /* options */
        start local 4 // io.vertx.config.ConfigRetrieverOptions options
         7: .line 66
            aload 1 /* vertx */
            aload 4 /* options */
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            pop
         8: .line 67
            return
        end local 4 // io.vertx.config.ConfigRetrieverOptions options
        end local 3 // io.vertx.config.ConfigStoreOptions sysPropsStore
        end local 2 // io.vertx.config.ConfigStoreOptions fileStore
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    9     0           this  Lexamples/ConfigExamples;
            0    9     1          vertx  Lio/vertx/core/Vertx;
            5    9     2      fileStore  Lio/vertx/config/ConfigStoreOptions;
            6    9     3  sysPropsStore  Lio/vertx/config/ConfigStoreOptions;
            7    9     4        options  Lio/vertx/config/ConfigRetrieverOptions;
    MethodParameters:
       Name  Flags
      vertx  

  public void example3(io.vertx.config.ConfigRetriever);
    descriptor: (Lio/vertx/config/ConfigRetriever;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.ConfigExamples this
        start local 1 // io.vertx.config.ConfigRetriever retriever
         0: .line 70
            aload 1 /* retriever */
            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/ConfigExamples.lambda$0(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.config.ConfigRetriever.getConfig:(Lio/vertx/core/Handler;)V
         1: .line 77
            return
        end local 1 // io.vertx.config.ConfigRetriever retriever
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lexamples/ConfigExamples;
            0    2     1  retriever  Lio/vertx/config/ConfigRetriever;
    MethodParameters:
           Name  Flags
      retriever  

  public void future(io.vertx.config.ConfigRetriever);
    descriptor: (Lio/vertx/config/ConfigRetriever;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.ConfigExamples this
        start local 1 // io.vertx.config.ConfigRetriever retriever
         0: .line 80
            aload 1 /* retriever */
            invokeinterface io.vertx.config.ConfigRetriever.getConfig:()Lio/vertx/core/Future;
            astore 2 /* future */
        start local 2 // io.vertx.core.Future future
         1: .line 81
            aload 2 /* future */
            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/ConfigExamples.lambda$1(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
         2: .line 88
            return
        end local 2 // io.vertx.core.Future future
        end local 1 // io.vertx.config.ConfigRetriever retriever
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lexamples/ConfigExamples;
            0    3     1  retriever  Lio/vertx/config/ConfigRetriever;
            1    3     2     future  Lio/vertx/core/Future<Lio/vertx/core/json/JsonObject;>;
    MethodParameters:
           Name  Flags
      retriever  

  public void file();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 91
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 92
            ldc "file"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 93
            ldc "properties"
            invokevirtual io.vertx.config.ConfigStoreOptions.setFormat:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         3: .line 94
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "path"
            ldc "path-to-file.properties"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
         4: .line 95
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lexamples/ConfigExamples;

  public void json();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 98
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 99
            ldc "json"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 100
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "key"
            ldc "value"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
         3: .line 101
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lexamples/ConfigExamples;

  public void sys();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 104
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 105
            ldc "sys"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 106
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "cache"
            ldc "false"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
         3: .line 107
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lexamples/ConfigExamples;

  public void env();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 110
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 111
            ldc "env"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
            pop
         2: .line 112
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lexamples/ConfigExamples;

  public void env2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 115
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 116
            ldc "env"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 117
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "raw-data"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
         3: .line 118
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lexamples/ConfigExamples;

  public void env3();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 121
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 122
            ldc "env"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 123
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "keys"
            new io.vertx.core.json.JsonArray
            dup
            invokespecial io.vertx.core.json.JsonArray.<init>:()V
            ldc "SERVICE1_HOST"
            invokevirtual io.vertx.core.json.JsonArray.add:(Ljava/lang/Object;)Lio/vertx/core/json/JsonArray;
            ldc "SERVICE2_HOST"
            invokevirtual io.vertx.core.json.JsonArray.add:(Ljava/lang/Object;)Lio/vertx/core/json/JsonArray;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
         3: .line 124
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lexamples/ConfigExamples;

  public void http();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 128
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 129
            ldc "http"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 130
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         3: .line 131
            ldc "host"
            ldc "localhost"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         4: .line 132
            ldc "port"
            sipush 8080
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         5: .line 133
            ldc "path"
            ldc "/A"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         6: .line 130
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
         7: .line 134
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lexamples/ConfigExamples;

  public void http2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 137
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 138
            ldc "http"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 139
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         3: .line 140
            ldc "defaultHost"
            ldc "localhost"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         4: .line 141
            ldc "defaultPort"
            sipush 8080
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         5: .line 142
            ldc "ssl"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         6: .line 143
            ldc "path"
            ldc "/A"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         7: .line 144
            ldc "headers"
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "Accept"
            ldc "application/json"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         8: .line 139
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
         9: .line 145
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lexamples/ConfigExamples;

  public void eb();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 148
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 149
            ldc "event-bus"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 150
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         3: .line 151
            ldc "address"
            ldc "address-getting-the-conf"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         4: .line 150
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
         5: .line 153
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lexamples/ConfigExamples;

  public void dir();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 156
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 157
            ldc "directory"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 158
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "path"
            ldc "config"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         3: .line 159
            ldc "filesets"
            new io.vertx.core.json.JsonArray
            dup
            invokespecial io.vertx.core.json.JsonArray.<init>:()V
         4: .line 160
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "pattern"
            ldc "dir/*json"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonArray.add:(Ljava/lang/Object;)Lio/vertx/core/json/JsonArray;
         5: .line 161
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "pattern"
            ldc "dir/*.properties"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         6: .line 162
            ldc "format"
            ldc "properties"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         7: .line 161
            invokevirtual io.vertx.core.json.JsonArray.add:(Ljava/lang/Object;)Lio/vertx/core/json/JsonArray;
         8: .line 159
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         9: .line 158
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
        10: .line 165
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
        11: .line 166
            ldc "directory"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
        12: .line 167
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "path"
            ldc "config"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
        13: .line 168
            ldc "filesets"
            new io.vertx.core.json.JsonArray
            dup
            invokespecial io.vertx.core.json.JsonArray.<init>:()V
        14: .line 169
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "pattern"
            ldc "dir/*json"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonArray.add:(Ljava/lang/Object;)Lio/vertx/core/json/JsonArray;
        15: .line 170
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "pattern"
            ldc "dir/*.properties"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
        16: .line 171
            ldc "format"
            ldc "properties"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            ldc "raw-data"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
        17: .line 170
            invokevirtual io.vertx.core.json.JsonArray.add:(Ljava/lang/Object;)Lio/vertx/core/json/JsonArray;
        18: .line 168
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
        19: .line 167
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
        20: .line 173
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Lexamples/ConfigExamples;

  public void propsWithRawData();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 176
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 177
            ldc "properties"
            invokevirtual io.vertx.config.ConfigStoreOptions.setFormat:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 178
            ldc "file"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         3: .line 179
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "path"
            ldc "raw.properties"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            ldc "raw-data"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
         4: .line 181
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lexamples/ConfigExamples;

  public void propsWitHierarchicalStructure();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 184
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 185
            ldc "properties"
            invokevirtual io.vertx.config.ConfigStoreOptions.setFormat:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 186
            ldc "file"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         3: .line 187
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "path"
            ldc "hierarchical.properties"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            ldc "hierarchical"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
         4: .line 184
            astore 1 /* propertyWitHierarchical */
        start local 1 // io.vertx.config.ConfigStoreOptions propertyWitHierarchical
         5: .line 189
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
         6: .line 190
            aload 1 /* propertyWitHierarchical */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
         7: .line 189
            astore 2 /* options */
        start local 2 // io.vertx.config.ConfigRetrieverOptions options
         8: .line 192
            invokestatic io.vertx.core.Vertx.vertx:()Lio/vertx/core/Vertx;
            aload 2 /* options */
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            astore 3 /* configRetriever */
        start local 3 // io.vertx.config.ConfigRetriever configRetriever
         9: .line 194
            aload 3 /* configRetriever */
            invokeinterface io.vertx.config.ConfigRetriever.configStream:()Lio/vertx/core/streams/ReadStream;
            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/ConfigExamples.lambda$2(Lio/vertx/core/json/JsonObject;)V (6)
                  (Lio/vertx/core/json/JsonObject;)V
            invokeinterface io.vertx.core.streams.ReadStream.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
        10: .line 202
            return
        end local 3 // io.vertx.config.ConfigRetriever configRetriever
        end local 2 // io.vertx.config.ConfigRetrieverOptions options
        end local 1 // io.vertx.config.ConfigStoreOptions propertyWitHierarchical
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   11     0                     this  Lexamples/ConfigExamples;
            5   11     1  propertyWitHierarchical  Lio/vertx/config/ConfigStoreOptions;
            8   11     2                  options  Lio/vertx/config/ConfigRetrieverOptions;
            9   11     3          configRetriever  Lio/vertx/config/ConfigRetriever;

  public void consul();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // examples.ConfigExamples this
         0: .line 205
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 206
            ldc "consul"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 207
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         3: .line 208
            ldc "prefix"
            ldc "foo"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         4: .line 207
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
            pop
         5: .line 209
            return
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lexamples/ConfigExamples;

  public void period(io.vertx.config.ConfigStoreOptions, io.vertx.config.ConfigStoreOptions);
    descriptor: (Lio/vertx/config/ConfigStoreOptions;Lio/vertx/config/ConfigStoreOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // examples.ConfigExamples this
        start local 1 // io.vertx.config.ConfigStoreOptions store1
        start local 2 // io.vertx.config.ConfigStoreOptions store2
         0: .line 212
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
         1: .line 213
            ldc 2000
            invokevirtual io.vertx.config.ConfigRetrieverOptions.setScanPeriod:(J)Lio/vertx/config/ConfigRetrieverOptions;
         2: .line 214
            aload 1 /* store1 */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
         3: .line 215
            aload 2 /* store2 */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
         4: .line 212
            astore 3 /* options */
        start local 3 // io.vertx.config.ConfigRetrieverOptions options
         5: .line 217
            invokestatic io.vertx.core.Vertx.vertx:()Lio/vertx/core/Vertx;
            aload 3 /* options */
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            astore 4 /* retriever */
        start local 4 // io.vertx.config.ConfigRetriever retriever
         6: .line 218
            aload 4 /* retriever */
            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/ConfigExamples.lambda$3(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.config.ConfigRetriever.getConfig:(Lio/vertx/core/Handler;)V
         7: .line 222
            aload 4 /* retriever */
            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/ConfigExamples.lambda$4(Lio/vertx/config/ConfigChange;)V (6)
                  (Lio/vertx/config/ConfigChange;)V
            invokeinterface io.vertx.config.ConfigRetriever.listen:(Lio/vertx/core/Handler;)V
         8: .line 228
            return
        end local 4 // io.vertx.config.ConfigRetriever retriever
        end local 3 // io.vertx.config.ConfigRetrieverOptions options
        end local 2 // io.vertx.config.ConfigStoreOptions store2
        end local 1 // io.vertx.config.ConfigStoreOptions store1
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lexamples/ConfigExamples;
            0    9     1     store1  Lio/vertx/config/ConfigStoreOptions;
            0    9     2     store2  Lio/vertx/config/ConfigStoreOptions;
            5    9     3    options  Lio/vertx/config/ConfigRetrieverOptions;
            6    9     4  retriever  Lio/vertx/config/ConfigRetriever;
    MethodParameters:
        Name  Flags
      store1  
      store2  

  public void stream(io.vertx.config.ConfigStoreOptions, io.vertx.config.ConfigStoreOptions);
    descriptor: (Lio/vertx/config/ConfigStoreOptions;Lio/vertx/config/ConfigStoreOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // examples.ConfigExamples this
        start local 1 // io.vertx.config.ConfigStoreOptions store1
        start local 2 // io.vertx.config.ConfigStoreOptions store2
         0: .line 231
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
         1: .line 232
            ldc 2000
            invokevirtual io.vertx.config.ConfigRetrieverOptions.setScanPeriod:(J)Lio/vertx/config/ConfigRetrieverOptions;
         2: .line 233
            aload 1 /* store1 */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
         3: .line 234
            aload 2 /* store2 */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
         4: .line 231
            astore 3 /* options */
        start local 3 // io.vertx.config.ConfigRetrieverOptions options
         5: .line 236
            invokestatic io.vertx.core.Vertx.vertx:()Lio/vertx/core/Vertx;
            aload 3 /* options */
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            astore 4 /* retriever */
        start local 4 // io.vertx.config.ConfigRetriever retriever
         6: .line 237
            aload 4 /* retriever */
            invokeinterface io.vertx.config.ConfigRetriever.configStream:()Lio/vertx/core/streams/ReadStream;
         7: .line 238
            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/ConfigExamples.lambda$5(Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.streams.ReadStream.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
         8: .line 241
            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/ConfigExamples.lambda$6(Ljava/lang/Throwable;)V (6)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.streams.ReadStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
         9: .line 244
            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/ConfigExamples.lambda$7(Lio/vertx/core/json/JsonObject;)V (6)
                  (Lio/vertx/core/json/JsonObject;)V
            invokeinterface io.vertx.core.streams.ReadStream.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
        10: .line 248
            return
        end local 4 // io.vertx.config.ConfigRetriever retriever
        end local 3 // io.vertx.config.ConfigRetrieverOptions options
        end local 2 // io.vertx.config.ConfigStoreOptions store2
        end local 1 // io.vertx.config.ConfigStoreOptions store1
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lexamples/ConfigExamples;
            0   11     1     store1  Lio/vertx/config/ConfigStoreOptions;
            0   11     2     store2  Lio/vertx/config/ConfigStoreOptions;
            5   11     3    options  Lio/vertx/config/ConfigRetrieverOptions;
            6   11     4  retriever  Lio/vertx/config/ConfigRetriever;
    MethodParameters:
        Name  Flags
      store1  
      store2  

  public void cache(io.vertx.config.ConfigRetriever);
    descriptor: (Lio/vertx/config/ConfigRetriever;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // examples.ConfigExamples this
        start local 1 // io.vertx.config.ConfigRetriever retriever
         0: .line 251
            aload 1 /* retriever */
            invokeinterface io.vertx.config.ConfigRetriever.getCachedConfig:()Lio/vertx/core/json/JsonObject;
            pop
         1: .line 252
            return
        end local 1 // io.vertx.config.ConfigRetriever retriever
        end local 0 // examples.ConfigExamples this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lexamples/ConfigExamples;
            0    2     1  retriever  Lio/vertx/config/ConfigRetriever;
    MethodParameters:
           Name  Flags
      retriever  

  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 ar
         0: .line 71
            aload 0 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifne 2
         1: .line 74
            aload 0 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.json.JsonObject
            pop
         2: .line 76
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0    ar  Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;

  private static void lambda$1(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 ar
         0: .line 82
            aload 0 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifne 2
         1: .line 85
            aload 0 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.json.JsonObject
            pop
         2: .line 87
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0    ar  Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;

  private static void lambda$2(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.core.json.JsonObject config
         0: .line 195
            aload 0 /* config */
            ldc "server"
            invokevirtual io.vertx.core.json.JsonObject.getJsonObject:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            ldc "host"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            pop
         1: .line 196
            aload 0 /* config */
            ldc "server"
            invokevirtual io.vertx.core.json.JsonObject.getJsonObject:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            ldc "port"
            invokevirtual io.vertx.core.json.JsonObject.getInteger:(Ljava/lang/String;)Ljava/lang/Integer;
            pop
         2: .line 197
            aload 0 /* config */
            ldc "multiple"
            invokevirtual io.vertx.core.json.JsonObject.getJsonObject:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            ldc "values"
            invokevirtual io.vertx.core.json.JsonObject.getJsonArray:(Ljava/lang/String;)Lio/vertx/core/json/JsonArray;
            astore 1 /* multiple */
        start local 1 // io.vertx.core.json.JsonArray multiple
         3: .line 198
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         4: goto 7
         5: .line 199
      StackMap locals: io.vertx.core.json.JsonArray int
      StackMap stack:
            aload 1 /* multiple */
            iload 2 /* i */
            invokevirtual io.vertx.core.json.JsonArray.getInteger:(I)Ljava/lang/Integer;
            pop
         6: .line 198
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            aload 1 /* multiple */
            invokevirtual io.vertx.core.json.JsonArray.size:()I
            if_icmplt 5
        end local 2 // int i
        end local 1 // io.vertx.core.json.JsonArray multiple
         8: .line 201
            return
        end local 0 // io.vertx.core.json.JsonObject config
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0    config  Lio/vertx/core/json/JsonObject;
            3    8     1  multiple  Lio/vertx/core/json/JsonArray;
            4    8     2         i  I

  private static void lambda$3(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 json
         0: .line 220
            return
        end local 0 // io.vertx.core.AsyncResult json
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  json  Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;

  private static void lambda$4(io.vertx.config.ConfigChange);
    descriptor: (Lio/vertx/config/ConfigChange;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.config.ConfigChange change
         0: .line 224
            aload 0 /* change */
            invokevirtual io.vertx.config.ConfigChange.getPreviousConfiguration:()Lio/vertx/core/json/JsonObject;
            pop
         1: .line 226
            aload 0 /* change */
            invokevirtual io.vertx.config.ConfigChange.getNewConfiguration:()Lio/vertx/core/json/JsonObject;
            pop
         2: .line 227
            return
        end local 0 // io.vertx.config.ConfigChange change
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  change  Lio/vertx/config/ConfigChange;

  private static void lambda$5(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // java.lang.Void v
         0: .line 240
            return
        end local 0 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     v  Ljava/lang/Void;

  private static void lambda$6(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // java.lang.Throwable t
         0: .line 243
            return
        end local 0 // java.lang.Throwable t
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     t  Ljava/lang/Throwable;

  private static void lambda$7(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.json.JsonObject conf
         0: .line 246
            return
        end local 0 // io.vertx.core.json.JsonObject conf
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  conf  Lio/vertx/core/json/JsonObject;
}
SourceFile: "ConfigExamples.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles