public class io.vertx.config.impl.spi.HttpConfigStore implements io.vertx.config.spi.ConfigStore
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.config.impl.spi.HttpConfigStore
  super_class: java.lang.Object
{
  private final java.lang.String host;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int port;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String path;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.http.HttpClient client;
    descriptor: Lio/vertx/core/http/HttpClient;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String, int, java.lang.String, io.vertx.core.http.HttpClient);
    descriptor: (Ljava/lang/String;ILjava/lang/String;Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.vertx.config.impl.spi.HttpConfigStore this
        start local 1 // java.lang.String host
        start local 2 // int port
        start local 3 // java.lang.String path
        start local 4 // io.vertx.core.http.HttpClient client
         0: .line 39
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            aload 1 /* host */
            putfield io.vertx.config.impl.spi.HttpConfigStore.host:Ljava/lang/String;
         2: .line 41
            aload 0 /* this */
            iload 2 /* port */
            putfield io.vertx.config.impl.spi.HttpConfigStore.port:I
         3: .line 42
            aload 0 /* this */
            aload 3 /* path */
            putfield io.vertx.config.impl.spi.HttpConfigStore.path:Ljava/lang/String;
         4: .line 43
            aload 0 /* this */
            aload 4 /* client */
            putfield io.vertx.config.impl.spi.HttpConfigStore.client:Lio/vertx/core/http/HttpClient;
         5: .line 44
            return
        end local 4 // io.vertx.core.http.HttpClient client
        end local 3 // java.lang.String path
        end local 2 // int port
        end local 1 // java.lang.String host
        end local 0 // io.vertx.config.impl.spi.HttpConfigStore this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/vertx/config/impl/spi/HttpConfigStore;
            0    6     1    host  Ljava/lang/String;
            0    6     2    port  I
            0    6     3    path  Ljava/lang/String;
            0    6     4  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
        Name  Flags
      host    
      port    
      path    
      client  

  public void get(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.buffer.Buffer>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.config.impl.spi.HttpConfigStore this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 48
            aload 0 /* this */
            getfield io.vertx.config.impl.spi.HttpConfigStore.client:Lio/vertx/core/http/HttpClient;
            aload 0 /* this */
            getfield io.vertx.config.impl.spi.HttpConfigStore.port:I
            aload 0 /* this */
            getfield io.vertx.config.impl.spi.HttpConfigStore.host:Ljava/lang/String;
            aload 0 /* this */
            getfield io.vertx.config.impl.spi.HttpConfigStore.path:Ljava/lang/String;
            aload 1 /* completionHandler */
            invokedynamic handle(Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/config/impl/spi/HttpConfigStore.lambda$0(Lio/vertx/core/Handler;Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.get:(ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
         1: .line 53
            aload 1 /* completionHandler */
            invokedynamic handle(Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/config/impl/spi/HttpConfigStore.lambda$3(Lio/vertx/core/Handler;Ljava/lang/Throwable;)V (6)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.http.HttpClientRequest.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
         2: .line 54
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
         3: .line 55
            return
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.config.impl.spi.HttpConfigStore this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lio/vertx/config/impl/spi/HttpConfigStore;
            0    4     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/buffer/Buffer;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/buffer/Buffer;>;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  public void close(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.config.impl.spi.HttpConfigStore this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 59
            aload 0 /* this */
            getfield io.vertx.config.impl.spi.HttpConfigStore.client:Lio/vertx/core/http/HttpClient;
            invokeinterface io.vertx.core.http.HttpClient.close:()V
         1: .line 60
            aload 1 /* completionHandler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 61
            return
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.config.impl.spi.HttpConfigStore this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lio/vertx/config/impl/spi/HttpConfigStore;
            0    3     1  completionHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  private static void lambda$0(io.vertx.core.Handler, io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.http.HttpClientResponse response
         0: .line 49
            aload 1 /* response */
         1: .line 50
            aload 0
            invokedynamic handle(Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/config/impl/spi/HttpConfigStore.lambda$1(Lio/vertx/core/Handler;Ljava/lang/Throwable;)V (6)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.http.HttpClientResponse.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
         2: .line 51
            aload 0
            invokedynamic handle(Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/config/impl/spi/HttpConfigStore.lambda$2(Lio/vertx/core/Handler;Lio/vertx/core/buffer/Buffer;)V (6)
                  (Lio/vertx/core/buffer/Buffer;)V
            invokeinterface io.vertx.core.http.HttpClientResponse.bodyHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
            return
        end local 1 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     1  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$3(io.vertx.core.Handler, java.lang.Throwable);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Throwable;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Throwable t
         0: .line 53
            aload 0
            aload 1 /* t */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 1 // java.lang.Throwable t
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     t  Ljava/lang/Throwable;

  private static void lambda$1(io.vertx.core.Handler, java.lang.Throwable);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Throwable;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Throwable t
         0: .line 50
            aload 0
            aload 1 /* t */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 1 // java.lang.Throwable t
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     t  Ljava/lang/Throwable;

  private static void lambda$2(io.vertx.core.Handler, io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/buffer/Buffer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.buffer.Buffer buffer
         0: .line 51
            aload 0
            aload 1 /* buffer */
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 1 // io.vertx.core.buffer.Buffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     1  buffer  Lio/vertx/core/buffer/Buffer;
}
SourceFile: "HttpConfigStore.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles