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

  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.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 35
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            pop
         1: .line 36
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lexamples/HTTPExamples;
            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=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 40
            new io.vertx.core.http.HttpServerOptions
            dup
            invokespecial io.vertx.core.http.HttpServerOptions.<init>:()V
            ldc 1000000
            invokevirtual io.vertx.core.http.HttpServerOptions.setMaxWebsocketFrameSize:(I)Lio/vertx/core/http/HttpServerOptions;
            astore 2 /* options */
        start local 2 // io.vertx.core.http.HttpServerOptions options
         1: .line 42
            aload 1 /* vertx */
            aload 2 /* options */
            invokeinterface io.vertx.core.Vertx.createHttpServer:(Lio/vertx/core/http/HttpServerOptions;)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 43
            return
        end local 2 // io.vertx.core.http.HttpServerOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/HTTPExamples;
            0    3     1    vertx  Lio/vertx/core/Vertx;
            1    3     2  options  Lio/vertx/core/http/HttpServerOptions;
    MethodParameters:
       Name  Flags
      vertx  

  public void exampleServerLogging(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 47
            new io.vertx.core.http.HttpServerOptions
            dup
            invokespecial io.vertx.core.http.HttpServerOptions.<init>:()V
            iconst_1
            invokevirtual io.vertx.core.http.HttpServerOptions.setLogActivity:(Z)Lio/vertx/core/http/HttpServerOptions;
            astore 2 /* options */
        start local 2 // io.vertx.core.http.HttpServerOptions options
         1: .line 49
            aload 1 /* vertx */
            aload 2 /* options */
            invokeinterface io.vertx.core.Vertx.createHttpServer:(Lio/vertx/core/http/HttpServerOptions;)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 50
            return
        end local 2 // io.vertx.core.http.HttpServerOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/HTTPExamples;
            0    3     1    vertx  Lio/vertx/core/Vertx;
            1    3     2  options  Lio/vertx/core/http/HttpServerOptions;
    MethodParameters:
       Name  Flags
      vertx  

  public void example3(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 54
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            astore 2 /* server */
        start local 2 // io.vertx.core.http.HttpServer server
         1: .line 55
            aload 2 /* server */
            invokeinterface io.vertx.core.http.HttpServer.listen:()Lio/vertx/core/http/HttpServer;
            pop
         2: .line 56
            return
        end local 2 // io.vertx.core.http.HttpServer server
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lexamples/HTTPExamples;
            0    3     1   vertx  Lio/vertx/core/Vertx;
            1    3     2  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
       Name  Flags
      vertx  

  public void example4(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.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 60
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            astore 2 /* server */
        start local 2 // io.vertx.core.http.HttpServer server
         1: .line 61
            aload 2 /* server */
            sipush 8080
            ldc "myhost.com"
            invokeinterface io.vertx.core.http.HttpServer.listen:(ILjava/lang/String;)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 62
            return
        end local 2 // io.vertx.core.http.HttpServer server
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lexamples/HTTPExamples;
            0    3     1   vertx  Lio/vertx/core/Vertx;
            1    3     2  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
       Name  Flags
      vertx  

  public void example5(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 66
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            astore 2 /* server */
        start local 2 // io.vertx.core.http.HttpServer server
         1: .line 67
            aload 2 /* server */
            sipush 8080
            ldc "myhost.com"
            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/HTTPExamples.lambda$0(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.http.HttpServer.listen:(ILjava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 74
            return
        end local 2 // io.vertx.core.http.HttpServer server
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lexamples/HTTPExamples;
            0    3     1   vertx  Lio/vertx/core/Vertx;
            1    3     2  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
       Name  Flags
      vertx  

  public void example6(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 78
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            astore 2 /* server */
        start local 2 // io.vertx.core.http.HttpServer server
         1: .line 79
            aload 2 /* server */
            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/HTTPExamples.lambda$1(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 82
            return
        end local 2 // io.vertx.core.http.HttpServer server
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lexamples/HTTPExamples;
            0    3     1   vertx  Lio/vertx/core/Vertx;
            1    3     2  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
       Name  Flags
      vertx  

  public void example7(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 86
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            astore 2 /* server */
        start local 2 // io.vertx.core.http.HttpServer server
         1: .line 87
            aload 2 /* server */
            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/HTTPExamples.lambda$2(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 91
            return
        end local 2 // io.vertx.core.http.HttpServer server
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lexamples/HTTPExamples;
            0    3     1   vertx  Lio/vertx/core/Vertx;
            1    3     2  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
       Name  Flags
      vertx  

  public void example7_1(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 95
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            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/HTTPExamples.lambda$3(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
         1: .line 97
            sipush 8080
            invokeinterface io.vertx.core.http.HttpServer.listen:(I)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 99
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lexamples/HTTPExamples;
            0    3     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example8(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 104
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.headers:()Lio/vertx/core/MultiMap;
            astore 2 /* headers */
        start local 2 // io.vertx.core.MultiMap headers
         1: .line 107
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "User agent is "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* headers */
            ldc "user-agent"
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         2: .line 110
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "User agent is "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* headers */
            ldc "User-Agent"
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         3: .line 111
            return
        end local 2 // io.vertx.core.MultiMap headers
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lexamples/HTTPExamples;
            0    4     1  request  Lio/vertx/core/http/HttpServerRequest;
            1    4     2  headers  Lio/vertx/core/MultiMap;
    MethodParameters:
         Name  Flags
      request  

  public void example9(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 115
            aload 1 /* request */
            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/HTTPExamples.lambda$4(Lio/vertx/core/buffer/Buffer;)V (6)
                  (Lio/vertx/core/buffer/Buffer;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         1: .line 118
            return
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lexamples/HTTPExamples;
            0    2     1  request  Lio/vertx/core/http/HttpServerRequest;
    MethodParameters:
         Name  Flags
      request  

  public void example10(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 123
            invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
            astore 2 /* totalBuffer */
        start local 2 // io.vertx.core.buffer.Buffer totalBuffer
         1: .line 125
            aload 1 /* request */
            aload 2 /* totalBuffer */
            invokedynamic handle(Lio/vertx/core/buffer/Buffer;)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/HTTPExamples.lambda$5(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/buffer/Buffer;)V (6)
                  (Lio/vertx/core/buffer/Buffer;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         2: .line 130
            aload 1 /* request */
            aload 2 /* totalBuffer */
            invokedynamic handle(Lio/vertx/core/buffer/Buffer;)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/HTTPExamples.lambda$6(Lio/vertx/core/buffer/Buffer;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         3: .line 133
            return
        end local 2 // io.vertx.core.buffer.Buffer totalBuffer
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lexamples/HTTPExamples;
            0    4     1      request  Lio/vertx/core/http/HttpServerRequest;
            1    4     2  totalBuffer  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
         Name  Flags
      request  

  public void example11(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 137
            aload 1 /* request */
            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/HTTPExamples.lambda$7(Lio/vertx/core/buffer/Buffer;)V (6)
                  (Lio/vertx/core/buffer/Buffer;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.bodyHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         1: .line 140
            return
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lexamples/HTTPExamples;
            0    2     1  request  Lio/vertx/core/http/HttpServerRequest;
    MethodParameters:
         Name  Flags
      request  

  public void example12(io.vertx.core.http.HttpServer);
    descriptor: (Lio/vertx/core/http/HttpServer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServer server
         0: .line 144
            aload 1 /* server */
            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/HTTPExamples.lambda$8(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         1: .line 151
            return
        end local 1 // io.vertx.core.http.HttpServer server
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
        Name  Flags
      server  

  public void example13(io.vertx.core.http.HttpServer);
    descriptor: (Lio/vertx/core/http/HttpServer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServer server
         0: .line 155
            aload 1 /* server */
            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/HTTPExamples.lambda$10(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         1: .line 161
            return
        end local 1 // io.vertx.core.http.HttpServer server
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
        Name  Flags
      server  

  public void example14(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 165
            aload 1 /* request */
            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/HTTPExamples.lambda$12(Lio/vertx/core/http/HttpServerFileUpload;)V (6)
                  (Lio/vertx/core/http/HttpServerFileUpload;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.uploadHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         1: .line 170
            return
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lexamples/HTTPExamples;
            0    2     1  request  Lio/vertx/core/http/HttpServerRequest;
    MethodParameters:
         Name  Flags
      request  

  public void example15(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 174
            aload 1 /* request */
            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/HTTPExamples.lambda$14(Lio/vertx/core/http/HttpServerFileUpload;)V (6)
                  (Lio/vertx/core/http/HttpServerFileUpload;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.uploadHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         1: .line 177
            return
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lexamples/HTTPExamples;
            0    2     1  request  Lio/vertx/core/http/HttpServerRequest;
    MethodParameters:
         Name  Flags
      request  

  public void example16(io.vertx.core.http.HttpServerRequest, io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
        start local 2 // io.vertx.core.buffer.Buffer buffer
         0: .line 180
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 3 /* response */
        start local 3 // io.vertx.core.http.HttpServerResponse response
         1: .line 181
            aload 3 /* response */
            aload 2 /* buffer */
            invokeinterface io.vertx.core.http.HttpServerResponse.write:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/HttpServerResponse;
            pop
         2: .line 182
            return
        end local 3 // io.vertx.core.http.HttpServerResponse response
        end local 2 // io.vertx.core.buffer.Buffer buffer
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lexamples/HTTPExamples;
            0    3     1   request  Lio/vertx/core/http/HttpServerRequest;
            0    3     2    buffer  Lio/vertx/core/buffer/Buffer;
            1    3     3  response  Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      request  
      buffer   

  public void example17(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 185
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 2 /* response */
        start local 2 // io.vertx.core.http.HttpServerResponse response
         1: .line 186
            aload 2 /* response */
            ldc "hello world!"
            invokeinterface io.vertx.core.http.HttpServerResponse.write:(Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
            pop
         2: .line 187
            return
        end local 2 // io.vertx.core.http.HttpServerResponse response
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lexamples/HTTPExamples;
            0    3     1   request  Lio/vertx/core/http/HttpServerRequest;
            1    3     2  response  Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      request  

  public void example18(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 190
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 2 /* response */
        start local 2 // io.vertx.core.http.HttpServerResponse response
         1: .line 191
            aload 2 /* response */
            ldc "hello world!"
            ldc "UTF-16"
            invokeinterface io.vertx.core.http.HttpServerResponse.write:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
            pop
         2: .line 192
            return
        end local 2 // io.vertx.core.http.HttpServerResponse response
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lexamples/HTTPExamples;
            0    3     1   request  Lio/vertx/core/http/HttpServerRequest;
            1    3     2  response  Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      request  

  public void example19(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 195
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 2 /* response */
        start local 2 // io.vertx.core.http.HttpServerResponse response
         1: .line 196
            aload 2 /* response */
            ldc "hello world!"
            invokeinterface io.vertx.core.http.HttpServerResponse.write:(Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
            pop
         2: .line 197
            aload 2 /* response */
            invokeinterface io.vertx.core.http.HttpServerResponse.end:()V
         3: .line 198
            return
        end local 2 // io.vertx.core.http.HttpServerResponse response
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lexamples/HTTPExamples;
            0    4     1   request  Lio/vertx/core/http/HttpServerRequest;
            1    4     2  response  Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      request  

  public void example20(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 201
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 2 /* response */
        start local 2 // io.vertx.core.http.HttpServerResponse response
         1: .line 202
            aload 2 /* response */
            ldc "hello world!"
            invokeinterface io.vertx.core.http.HttpServerResponse.end:(Ljava/lang/String;)V
         2: .line 203
            return
        end local 2 // io.vertx.core.http.HttpServerResponse response
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lexamples/HTTPExamples;
            0    3     1   request  Lio/vertx/core/http/HttpServerRequest;
            1    3     2  response  Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      request  

  public void example21(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 206
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 2 /* response */
        start local 2 // io.vertx.core.http.HttpServerResponse response
         1: .line 207
            aload 2 /* response */
            invokeinterface io.vertx.core.http.HttpServerResponse.headers:()Lio/vertx/core/MultiMap;
            astore 3 /* headers */
        start local 3 // io.vertx.core.MultiMap headers
         2: .line 208
            aload 3 /* headers */
            ldc "content-type"
            ldc "text/html"
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         3: .line 209
            aload 3 /* headers */
            ldc "other-header"
            ldc "wibble"
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         4: .line 210
            return
        end local 3 // io.vertx.core.MultiMap headers
        end local 2 // io.vertx.core.http.HttpServerResponse response
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lexamples/HTTPExamples;
            0    5     1   request  Lio/vertx/core/http/HttpServerRequest;
            1    5     2  response  Lio/vertx/core/http/HttpServerResponse;
            2    5     3   headers  Lio/vertx/core/MultiMap;
    MethodParameters:
         Name  Flags
      request  

  public void example22(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 213
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 2 /* response */
        start local 2 // io.vertx.core.http.HttpServerResponse response
         1: .line 214
            aload 2 /* response */
            ldc "content-type"
            ldc "text/html"
            invokeinterface io.vertx.core.http.HttpServerResponse.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
            ldc "other-header"
            ldc "wibble"
            invokeinterface io.vertx.core.http.HttpServerResponse.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
            pop
         2: .line 215
            return
        end local 2 // io.vertx.core.http.HttpServerResponse response
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lexamples/HTTPExamples;
            0    3     1   request  Lio/vertx/core/http/HttpServerRequest;
            1    3     2  response  Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      request  

  public void example23(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 218
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 2 /* response */
        start local 2 // io.vertx.core.http.HttpServerResponse response
         1: .line 219
            aload 2 /* response */
            iconst_1
            invokeinterface io.vertx.core.http.HttpServerResponse.setChunked:(Z)Lio/vertx/core/http/HttpServerResponse;
            pop
         2: .line 220
            return
        end local 2 // io.vertx.core.http.HttpServerResponse response
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lexamples/HTTPExamples;
            0    3     1   request  Lio/vertx/core/http/HttpServerRequest;
            1    3     2  response  Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      request  

  public void example24(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 223
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 2 /* response */
        start local 2 // io.vertx.core.http.HttpServerResponse response
         1: .line 224
            aload 2 /* response */
            iconst_1
            invokeinterface io.vertx.core.http.HttpServerResponse.setChunked:(Z)Lio/vertx/core/http/HttpServerResponse;
            pop
         2: .line 225
            aload 2 /* response */
            invokeinterface io.vertx.core.http.HttpServerResponse.trailers:()Lio/vertx/core/MultiMap;
            astore 3 /* trailers */
        start local 3 // io.vertx.core.MultiMap trailers
         3: .line 226
            aload 3 /* trailers */
            ldc "X-wibble"
            ldc "woobble"
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            ldc "X-quux"
            ldc "flooble"
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         4: .line 227
            return
        end local 3 // io.vertx.core.MultiMap trailers
        end local 2 // io.vertx.core.http.HttpServerResponse response
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lexamples/HTTPExamples;
            0    5     1   request  Lio/vertx/core/http/HttpServerRequest;
            1    5     2  response  Lio/vertx/core/http/HttpServerResponse;
            3    5     3  trailers  Lio/vertx/core/MultiMap;
    MethodParameters:
         Name  Flags
      request  

  public void example25(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 230
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 2 /* response */
        start local 2 // io.vertx.core.http.HttpServerResponse response
         1: .line 231
            aload 2 /* response */
            iconst_1
            invokeinterface io.vertx.core.http.HttpServerResponse.setChunked:(Z)Lio/vertx/core/http/HttpServerResponse;
            pop
         2: .line 232
            aload 2 /* response */
            ldc "X-wibble"
            ldc "woobble"
            invokeinterface io.vertx.core.http.HttpServerResponse.putTrailer:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
            ldc "X-quux"
            ldc "flooble"
            invokeinterface io.vertx.core.http.HttpServerResponse.putTrailer:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
            pop
         3: .line 233
            return
        end local 2 // io.vertx.core.http.HttpServerResponse response
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lexamples/HTTPExamples;
            0    4     1   request  Lio/vertx/core/http/HttpServerRequest;
            1    4     2  response  Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      request  

  public void example26(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 236
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            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/HTTPExamples.lambda$15(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
         1: .line 244
            sipush 8080
            invokeinterface io.vertx.core.http.HttpServer.listen:(I)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 245
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lexamples/HTTPExamples;
            0    3     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example26b(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 248
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            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/HTTPExamples.lambda$16(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
         1: .line 264
            sipush 8080
            invokeinterface io.vertx.core.http.HttpServer.listen:(I)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 265
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lexamples/HTTPExamples;
            0    3     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example26c(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 268
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            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/HTTPExamples.lambda$17(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
         1: .line 277
            sipush 8080
            invokeinterface io.vertx.core.http.HttpServer.listen:(I)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 278
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lexamples/HTTPExamples;
            0    3     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example27(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 281
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            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/HTTPExamples.lambda$18(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
         1: .line 290
            sipush 8080
            invokeinterface io.vertx.core.http.HttpServer.listen:(I)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 291
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lexamples/HTTPExamples;
            0    3     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example28(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.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 294
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpClient:()Lio/vertx/core/http/HttpClient;
            pop
         1: .line 295
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lexamples/HTTPExamples;
            0    2     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void example29(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 298
            new io.vertx.core.http.HttpClientOptions
            dup
            invokespecial io.vertx.core.http.HttpClientOptions.<init>:()V
            iconst_0
            invokevirtual io.vertx.core.http.HttpClientOptions.setKeepAlive:(Z)Lio/vertx/core/http/HttpClientOptions;
            astore 2 /* options */
        start local 2 // io.vertx.core.http.HttpClientOptions options
         1: .line 299
            aload 1 /* vertx */
            aload 2 /* options */
            invokeinterface io.vertx.core.Vertx.createHttpClient:(Lio/vertx/core/http/HttpClientOptions;)Lio/vertx/core/http/HttpClient;
            pop
         2: .line 300
            return
        end local 2 // io.vertx.core.http.HttpClientOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/HTTPExamples;
            0    3     1    vertx  Lio/vertx/core/Vertx;
            1    3     2  options  Lio/vertx/core/http/HttpClientOptions;
    MethodParameters:
       Name  Flags
      vertx  

  public void exampleClientLogging(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 303
            new io.vertx.core.http.HttpClientOptions
            dup
            invokespecial io.vertx.core.http.HttpClientOptions.<init>:()V
            iconst_1
            invokevirtual io.vertx.core.http.HttpClientOptions.setLogActivity:(Z)Lio/vertx/core/http/HttpClientOptions;
            astore 2 /* options */
        start local 2 // io.vertx.core.http.HttpClientOptions options
         1: .line 304
            aload 1 /* vertx */
            aload 2 /* options */
            invokeinterface io.vertx.core.Vertx.createHttpClient:(Lio/vertx/core/http/HttpClientOptions;)Lio/vertx/core/http/HttpClient;
            pop
         2: .line 305
            return
        end local 2 // io.vertx.core.http.HttpClientOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/HTTPExamples;
            0    3     1    vertx  Lio/vertx/core/Vertx;
            1    3     2  options  Lio/vertx/core/http/HttpClientOptions;
    MethodParameters:
       Name  Flags
      vertx  

  public void example30(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.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 309
            new io.vertx.core.http.HttpClientOptions
            dup
            invokespecial io.vertx.core.http.HttpClientOptions.<init>:()V
            ldc "wibble.com"
            invokevirtual io.vertx.core.http.HttpClientOptions.setDefaultHost:(Ljava/lang/String;)Lio/vertx/core/http/HttpClientOptions;
            astore 2 /* options */
        start local 2 // io.vertx.core.http.HttpClientOptions options
         1: .line 311
            aload 1 /* vertx */
            aload 2 /* options */
            invokeinterface io.vertx.core.Vertx.createHttpClient:(Lio/vertx/core/http/HttpClientOptions;)Lio/vertx/core/http/HttpClient;
            astore 3 /* client */
        start local 3 // io.vertx.core.http.HttpClient client
         2: .line 312
            aload 3 /* client */
            ldc "/some-uri"
            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/HTTPExamples.lambda$20(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.getNow:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         3: .line 315
            return
        end local 3 // io.vertx.core.http.HttpClient client
        end local 2 // io.vertx.core.http.HttpClientOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lexamples/HTTPExamples;
            0    4     1    vertx  Lio/vertx/core/Vertx;
            1    4     2  options  Lio/vertx/core/http/HttpClientOptions;
            2    4     3   client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
       Name  Flags
      vertx  

  public void example31(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 318
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpClient:()Lio/vertx/core/http/HttpClient;
            astore 2 /* client */
        start local 2 // io.vertx.core.http.HttpClient client
         1: .line 321
            aload 2 /* client */
            sipush 8080
            ldc "myserver.mycompany.com"
            ldc "/some-uri"
            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/HTTPExamples.lambda$21(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.getNow:(ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         2: .line 326
            aload 2 /* client */
            ldc "foo.othercompany.com"
            ldc "/other-uri"
            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/HTTPExamples.lambda$22(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.getNow:(Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         3: .line 329
            return
        end local 2 // io.vertx.core.http.HttpClient client
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lexamples/HTTPExamples;
            0    4     1   vertx  Lio/vertx/core/Vertx;
            1    4     2  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
       Name  Flags
      vertx  

  public void example32(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.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 332
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpClient:()Lio/vertx/core/http/HttpClient;
            astore 2 /* client */
        start local 2 // io.vertx.core.http.HttpClient client
         1: .line 335
            aload 2 /* client */
            ldc "/some-uri"
            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/HTTPExamples.lambda$23(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.getNow:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         2: .line 340
            aload 2 /* client */
            ldc "/other-uri"
            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/HTTPExamples.lambda$24(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.headNow:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         3: .line 344
            return
        end local 2 // io.vertx.core.http.HttpClient client
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lexamples/HTTPExamples;
            0    4     1   vertx  Lio/vertx/core/Vertx;
            1    4     2  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
       Name  Flags
      vertx  

  public void example33(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 347
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpClient:()Lio/vertx/core/http/HttpClient;
            astore 2 /* client */
        start local 2 // io.vertx.core.http.HttpClient client
         1: .line 349
            aload 2 /* client */
            getstatic io.vertx.core.http.HttpMethod.GET:Lio/vertx/core/http/HttpMethod;
            ldc "some-uri"
            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/HTTPExamples.lambda$25(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.request:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
         2: .line 351
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
         3: .line 353
            aload 2 /* client */
            getstatic io.vertx.core.http.HttpMethod.POST:Lio/vertx/core/http/HttpMethod;
            ldc "foo-uri"
            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/HTTPExamples.lambda$26(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.request:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
         4: .line 355
            ldc "some-data"
            invokeinterface io.vertx.core.http.HttpClientRequest.end:(Ljava/lang/String;)V
         5: .line 356
            return
        end local 2 // io.vertx.core.http.HttpClient client
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lexamples/HTTPExamples;
            0    6     1   vertx  Lio/vertx/core/Vertx;
            1    6     2  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
       Name  Flags
      vertx  

  public void example34(io.vertx.core.Vertx, java.lang.String);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // java.lang.String body
         0: .line 359
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpClient:()Lio/vertx/core/http/HttpClient;
            astore 3 /* client */
        start local 3 // io.vertx.core.http.HttpClient client
         1: .line 361
            aload 3 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$27(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.post:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            astore 4 /* request */
        start local 4 // io.vertx.core.http.HttpClientRequest request
         2: .line 366
            aload 4 /* request */
            ldc "content-length"
            ldc "1000"
            invokeinterface io.vertx.core.http.HttpClientRequest.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            pop
         3: .line 367
            aload 4 /* request */
            ldc "content-type"
            ldc "text/plain"
            invokeinterface io.vertx.core.http.HttpClientRequest.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            pop
         4: .line 368
            aload 4 /* request */
            aload 2 /* body */
            invokeinterface io.vertx.core.http.HttpClientRequest.write:(Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            pop
         5: .line 371
            aload 4 /* request */
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
         6: .line 375
            aload 3 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$28(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.post:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
         7: .line 377
            ldc "content-length"
            ldc "1000"
            invokeinterface io.vertx.core.http.HttpClientRequest.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            ldc "content-type"
            ldc "text/plain"
            invokeinterface io.vertx.core.http.HttpClientRequest.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            aload 2 /* body */
            invokeinterface io.vertx.core.http.HttpClientRequest.write:(Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
         8: .line 381
            aload 3 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$29(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.post:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
         9: .line 383
            ldc "content-type"
            ldc "text/plain"
            invokeinterface io.vertx.core.http.HttpClientRequest.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            aload 2 /* body */
            invokeinterface io.vertx.core.http.HttpClientRequest.end:(Ljava/lang/String;)V
        10: .line 385
            return
        end local 4 // io.vertx.core.http.HttpClientRequest request
        end local 3 // io.vertx.core.http.HttpClient client
        end local 2 // java.lang.String body
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lexamples/HTTPExamples;
            0   11     1    vertx  Lio/vertx/core/Vertx;
            0   11     2     body  Ljava/lang/String;
            1   11     3   client  Lio/vertx/core/http/HttpClient;
            2   11     4  request  Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
       Name  Flags
      vertx  
      body   

  public void example35(io.vertx.core.http.HttpClientRequest);
    descriptor: (Lio/vertx/core/http/HttpClientRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClientRequest request
         0: .line 390
            aload 1 /* request */
            ldc "some data"
            invokeinterface io.vertx.core.http.HttpClientRequest.write:(Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            pop
         1: .line 393
            aload 1 /* request */
            ldc "some other data"
            ldc "UTF-16"
            invokeinterface io.vertx.core.http.HttpClientRequest.write:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            pop
         2: .line 396
            invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
            astore 2 /* buffer */
        start local 2 // io.vertx.core.buffer.Buffer buffer
         3: .line 397
            aload 2 /* buffer */
            bipush 123
            invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
            ldc 245
            invokeinterface io.vertx.core.buffer.Buffer.appendLong:(J)Lio/vertx/core/buffer/Buffer;
            pop
         4: .line 398
            aload 1 /* request */
            aload 2 /* buffer */
            invokeinterface io.vertx.core.http.HttpClientRequest.write:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/HttpClientRequest;
            pop
         5: .line 400
            return
        end local 2 // io.vertx.core.buffer.Buffer buffer
        end local 1 // io.vertx.core.http.HttpClientRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lexamples/HTTPExamples;
            0    6     1  request  Lio/vertx/core/http/HttpClientRequest;
            3    6     2   buffer  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
         Name  Flags
      request  

  public void example36(io.vertx.core.http.HttpClientRequest);
    descriptor: (Lio/vertx/core/http/HttpClientRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClientRequest request
         0: .line 405
            aload 1 /* request */
            ldc "some simple data"
            invokeinterface io.vertx.core.http.HttpClientRequest.end:(Ljava/lang/String;)V
         1: .line 408
            invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
            ldc 12.34
            invokeinterface io.vertx.core.buffer.Buffer.appendDouble:(D)Lio/vertx/core/buffer/Buffer;
            ldc 432
            invokeinterface io.vertx.core.buffer.Buffer.appendLong:(J)Lio/vertx/core/buffer/Buffer;
            astore 2 /* buffer */
        start local 2 // io.vertx.core.buffer.Buffer buffer
         2: .line 409
            aload 1 /* request */
            aload 2 /* buffer */
            invokeinterface io.vertx.core.http.HttpClientRequest.end:(Lio/vertx/core/buffer/Buffer;)V
         3: .line 411
            return
        end local 2 // io.vertx.core.buffer.Buffer buffer
        end local 1 // io.vertx.core.http.HttpClientRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lexamples/HTTPExamples;
            0    4     1  request  Lio/vertx/core/http/HttpClientRequest;
            2    4     2   buffer  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
         Name  Flags
      request  

  public void example37(io.vertx.core.http.HttpClientRequest);
    descriptor: (Lio/vertx/core/http/HttpClientRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClientRequest request
         0: .line 417
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpClientRequest.headers:()Lio/vertx/core/MultiMap;
            astore 2 /* headers */
        start local 2 // io.vertx.core.MultiMap headers
         1: .line 418
            aload 2 /* headers */
            ldc "content-type"
            ldc "application/json"
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            ldc "other-header"
            ldc "foo"
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         2: .line 420
            return
        end local 2 // io.vertx.core.MultiMap headers
        end local 1 // io.vertx.core.http.HttpClientRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/HTTPExamples;
            0    3     1  request  Lio/vertx/core/http/HttpClientRequest;
            1    3     2  headers  Lio/vertx/core/MultiMap;
    MethodParameters:
         Name  Flags
      request  

  public void example38(io.vertx.core.http.HttpClientRequest);
    descriptor: (Lio/vertx/core/http/HttpClientRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClientRequest request
         0: .line 426
            aload 1 /* request */
            ldc "content-type"
            ldc "application/json"
            invokeinterface io.vertx.core.http.HttpClientRequest.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            ldc "other-header"
            ldc "foo"
            invokeinterface io.vertx.core.http.HttpClientRequest.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            pop
         1: .line 428
            return
        end local 1 // io.vertx.core.http.HttpClientRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lexamples/HTTPExamples;
            0    2     1  request  Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
         Name  Flags
      request  

  public void example39(io.vertx.core.http.HttpClientRequest);
    descriptor: (Lio/vertx/core/http/HttpClientRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClientRequest request
         0: .line 431
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
         1: .line 432
            return
        end local 1 // io.vertx.core.http.HttpClientRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lexamples/HTTPExamples;
            0    2     1  request  Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
         Name  Flags
      request  

  public void example40(io.vertx.core.http.HttpClientRequest);
    descriptor: (Lio/vertx/core/http/HttpClientRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClientRequest request
         0: .line 436
            aload 1 /* request */
            ldc "some-data"
            invokeinterface io.vertx.core.http.HttpClientRequest.end:(Ljava/lang/String;)V
         1: .line 439
            invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
            ldc 12.3
            invokeinterface io.vertx.core.buffer.Buffer.appendFloat:(F)Lio/vertx/core/buffer/Buffer;
            sipush 321
            invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
            astore 2 /* buffer */
        start local 2 // io.vertx.core.buffer.Buffer buffer
         2: .line 440
            aload 1 /* request */
            aload 2 /* buffer */
            invokeinterface io.vertx.core.http.HttpClientRequest.end:(Lio/vertx/core/buffer/Buffer;)V
         3: .line 441
            return
        end local 2 // io.vertx.core.buffer.Buffer buffer
        end local 1 // io.vertx.core.http.HttpClientRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lexamples/HTTPExamples;
            0    4     1  request  Lio/vertx/core/http/HttpClientRequest;
            2    4     2   buffer  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
         Name  Flags
      request  

  public void example41(io.vertx.core.http.HttpClientRequest);
    descriptor: (Lio/vertx/core/http/HttpClientRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClientRequest request
         0: .line 445
            aload 1 /* request */
            iconst_1
            invokeinterface io.vertx.core.http.HttpClientRequest.setChunked:(Z)Lio/vertx/core/http/HttpClientRequest;
            pop
         1: .line 448
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 449
      StackMap locals: int
      StackMap stack:
            aload 1 /* request */
            new java.lang.StringBuilder
            dup
            ldc "this-is-chunk-"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.http.HttpClientRequest.write:(Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            pop
         4: .line 448
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            bipush 10
            if_icmplt 3
        end local 2 // int i
         6: .line 452
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
         7: .line 453
            return
        end local 1 // io.vertx.core.http.HttpClientRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lexamples/HTTPExamples;
            0    8     1  request  Lio/vertx/core/http/HttpClientRequest;
            2    6     2        i  I
    MethodParameters:
         Name  Flags
      request  

  public void example42(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 457
            aload 1 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$30(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.post:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            astore 2 /* request */
        start local 2 // io.vertx.core.http.HttpClientRequest request
         1: .line 460
            aload 2 /* request */
            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/HTTPExamples.lambda$31(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;
            pop
         2: .line 464
            return
        end local 2 // io.vertx.core.http.HttpClientRequest request
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/HTTPExamples;
            0    3     1   client  Lio/vertx/core/http/HttpClient;
            1    3     2  request  Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
        Name  Flags
      client  

  public void statusCodeHandling(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 467
            aload 1 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$32(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.post:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            astore 2 /* request */
        start local 2 // io.vertx.core.http.HttpClientRequest request
         1: .line 477
            aload 2 /* request */
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
         2: .line 478
            return
        end local 2 // io.vertx.core.http.HttpClientRequest request
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/HTTPExamples;
            0    3     1   client  Lio/vertx/core/http/HttpClient;
            1    3     2  request  Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
        Name  Flags
      client  

  public void example43(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 482
            aload 1 /* client */
            ldc "some-uri"
            invokeinterface io.vertx.core.http.HttpClient.post:(Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            astore 2 /* request */
        start local 2 // io.vertx.core.http.HttpClientRequest request
         1: .line 483
            aload 2 /* request */
            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/HTTPExamples.lambda$33(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClientRequest.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            pop
         2: .line 486
            return
        end local 2 // io.vertx.core.http.HttpClientRequest request
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lexamples/HTTPExamples;
            0    3     1   client  Lio/vertx/core/http/HttpClient;
            1    3     2  request  Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
        Name  Flags
      client  

  public void example44(io.vertx.core.http.HttpClientRequest, io.vertx.core.file.AsyncFile);
    descriptor: (Lio/vertx/core/http/HttpClientRequest;Lio/vertx/core/file/AsyncFile;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClientRequest request
        start local 2 // io.vertx.core.file.AsyncFile file
         0: .line 490
            aload 1 /* request */
            iconst_1
            invokeinterface io.vertx.core.http.HttpClientRequest.setChunked:(Z)Lio/vertx/core/http/HttpClientRequest;
            pop
         1: .line 491
            aload 2 /* file */
            aload 1 /* request */
            invokestatic io.vertx.core.streams.Pump.pump:(Lio/vertx/core/streams/ReadStream;Lio/vertx/core/streams/WriteStream;)Lio/vertx/core/streams/Pump;
            astore 3 /* pump */
        start local 3 // io.vertx.core.streams.Pump pump
         2: .line 492
            aload 2 /* file */
            aload 1 /* request */
            invokedynamic handle(Lio/vertx/core/http/HttpClientRequest;)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/HTTPExamples.lambda$34(Lio/vertx/core/http/HttpClientRequest;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.file.AsyncFile.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/file/AsyncFile;
            pop
         3: .line 493
            aload 3 /* pump */
            invokeinterface io.vertx.core.streams.Pump.start:()Lio/vertx/core/streams/Pump;
            pop
         4: .line 495
            return
        end local 3 // io.vertx.core.streams.Pump pump
        end local 2 // io.vertx.core.file.AsyncFile file
        end local 1 // io.vertx.core.http.HttpClientRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lexamples/HTTPExamples;
            0    5     1  request  Lio/vertx/core/http/HttpClientRequest;
            0    5     2     file  Lio/vertx/core/file/AsyncFile;
            2    5     3     pump  Lio/vertx/core/streams/Pump;
    MethodParameters:
         Name  Flags
      request  
      file     

  public void example45(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 499
            aload 1 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$35(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.getNow:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         1: .line 507
            return
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
        Name  Flags
      client  

  public void example46(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClientResponse response
         0: .line 511
            aload 1 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.headers:()Lio/vertx/core/MultiMap;
            ldc "content-type"
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/String;)Ljava/lang/String;
            pop
         1: .line 512
            aload 1 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.headers:()Lio/vertx/core/MultiMap;
            ldc "content-lengh"
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/String;)Ljava/lang/String;
            pop
         2: .line 514
            return
        end local 1 // io.vertx.core.http.HttpClientResponse response
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lexamples/HTTPExamples;
            0    3     1  response  Lio/vertx/core/http/HttpClientResponse;
    MethodParameters:
          Name  Flags
      response  

  public void example47(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 518
            aload 1 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$36(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.getNow:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         1: .line 524
            return
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
        Name  Flags
      client  

  public void example48(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 528
            aload 1 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$38(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.getNow:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         1: .line 544
            return
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
        Name  Flags
      client  

  public void example49(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 548
            aload 1 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$41(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.getNow:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         1: .line 555
            return
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
        Name  Flags
      client  

  public void exampleFollowRedirect01(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 559
            aload 1 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$43(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.get:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
         1: .line 561
            iconst_1
            invokeinterface io.vertx.core.http.HttpClientRequest.setFollowRedirects:(Z)Lio/vertx/core/http/HttpClientRequest;
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
         2: .line 562
            return
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lexamples/HTTPExamples;
            0    3     1  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
        Name  Flags
      client  

  public void exampleFollowRedirect02(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.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 566
            aload 1 /* vertx */
         1: .line 567
            new io.vertx.core.http.HttpClientOptions
            dup
            invokespecial io.vertx.core.http.HttpClientOptions.<init>:()V
         2: .line 568
            bipush 32
            invokevirtual io.vertx.core.http.HttpClientOptions.setMaxRedirects:(I)Lio/vertx/core/http/HttpClientOptions;
         3: .line 566
            invokeinterface io.vertx.core.Vertx.createHttpClient:(Lio/vertx/core/http/HttpClientOptions;)Lio/vertx/core/http/HttpClient;
            astore 2 /* client */
        start local 2 // io.vertx.core.http.HttpClient client
         4: .line 570
            aload 2 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$44(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.get:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
         5: .line 572
            iconst_1
            invokeinterface io.vertx.core.http.HttpClientRequest.setFollowRedirects:(Z)Lio/vertx/core/http/HttpClientRequest;
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
         6: .line 573
            return
        end local 2 // io.vertx.core.http.HttpClient client
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lexamples/HTTPExamples;
            0    7     1   vertx  Lio/vertx/core/Vertx;
            4    7     2  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
       Name  Flags
      vertx  

  private java.lang.String resolveURI(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // examples.HTTPExamples this
        start local 1 // java.lang.String base
        start local 2 // java.lang.String uriRef
         0: .line 576
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // java.lang.String uriRef
        end local 1 // java.lang.String base
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lexamples/HTTPExamples;
            0    1     1    base  Ljava/lang/String;
            0    1     2  uriRef  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      base    
      uriRef  

  public void exampleFollowRedirect03(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 581
            aload 1 /* client */
            aload 0 /* this */
            aload 1 /* client */
            invokedynamic apply(Lexamples/HTTPExamples;Lio/vertx/core/http/HttpClient;)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;
                  examples/HTTPExamples.lambda$45(Lio/vertx/core/http/HttpClient;Lio/vertx/core/http/HttpClientResponse;)Lio/vertx/core/Future; (7)
                  (Lio/vertx/core/http/HttpClientResponse;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.http.HttpClient.redirectHandler:(Ljava/util/function/Function;)Lio/vertx/core/http/HttpClient;
            pop
         1: .line 596
            return
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
        Name  Flags
      client  

  public void example50(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 600
            aload 1 /* client */
            ldc "some-uri"
            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/HTTPExamples.lambda$46(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.put:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            astore 2 /* request */
        start local 2 // io.vertx.core.http.HttpClientRequest request
         1: .line 604
            aload 2 /* request */
            ldc "Expect"
            ldc "100-Continue"
            invokeinterface io.vertx.core.http.HttpClientRequest.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            pop
         2: .line 606
            aload 2 /* request */
            aload 2 /* request */
            invokedynamic handle(Lio/vertx/core/http/HttpClientRequest;)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/HTTPExamples.lambda$47(Lio/vertx/core/http/HttpClientRequest;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.http.HttpClientRequest.continueHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            pop
         3: .line 612
            return
        end local 2 // io.vertx.core.http.HttpClientRequest request
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lexamples/HTTPExamples;
            0    4     1   client  Lio/vertx/core/http/HttpClient;
            1    4     2  request  Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
        Name  Flags
      client  

  public void example50_1(io.vertx.core.http.HttpServer);
    descriptor: (Lio/vertx/core/http/HttpServer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServer httpServer
         0: .line 616
            aload 1 /* httpServer */
            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/HTTPExamples.lambda$48(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         1: .line 632
            return
        end local 1 // io.vertx.core.http.HttpServer httpServer
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lexamples/HTTPExamples;
            0    2     1  httpServer  Lio/vertx/core/http/HttpServer;
    MethodParameters:
            Name  Flags
      httpServer  

  public void example50_2(io.vertx.core.http.HttpServer);
    descriptor: (Lio/vertx/core/http/HttpServer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServer httpServer
         0: .line 636
            aload 1 /* httpServer */
            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/HTTPExamples.lambda$51(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         1: .line 659
            return
        end local 1 // io.vertx.core.http.HttpServer httpServer
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lexamples/HTTPExamples;
            0    2     1  httpServer  Lio/vertx/core/http/HttpServer;
    MethodParameters:
            Name  Flags
      httpServer  

  public void example51(io.vertx.core.http.HttpServer);
    descriptor: (Lio/vertx/core/http/HttpServer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServer server
         0: .line 663
            aload 1 /* server */
            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/HTTPExamples.lambda$52(Lio/vertx/core/http/ServerWebSocket;)V (6)
                  (Lio/vertx/core/http/ServerWebSocket;)V
            invokeinterface io.vertx.core.http.HttpServer.websocketHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         1: .line 666
            return
        end local 1 // io.vertx.core.http.HttpServer server
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
        Name  Flags
      server  

  public void example52(io.vertx.core.http.HttpServer);
    descriptor: (Lio/vertx/core/http/HttpServer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServer server
         0: .line 670
            aload 1 /* server */
            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/HTTPExamples.lambda$53(Lio/vertx/core/http/ServerWebSocket;)V (6)
                  (Lio/vertx/core/http/ServerWebSocket;)V
            invokeinterface io.vertx.core.http.HttpServer.websocketHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         1: .line 677
            return
        end local 1 // io.vertx.core.http.HttpServer server
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
        Name  Flags
      server  

  public void exampleAsynchronousHandshake(io.vertx.core.http.HttpServer);
    descriptor: (Lio/vertx/core/http/HttpServer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServer server
         0: .line 680
            aload 1 /* server */
            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/HTTPExamples.lambda$54(Lio/vertx/core/http/ServerWebSocket;)V (6)
                  (Lio/vertx/core/http/ServerWebSocket;)V
            invokeinterface io.vertx.core.http.HttpServer.websocketHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         1: .line 694
            return
        end local 1 // io.vertx.core.http.HttpServer server
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
        Name  Flags
      server  

  private static void authenticate(io.vertx.core.http.ServerWebSocket, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Boolean>>);
    descriptor: (Lio/vertx/core/http/ServerWebSocket;Lio/vertx/core/Handler;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // io.vertx.core.http.ServerWebSocket ws
        start local 1 // io.vertx.core.Handler handler
         0: .line 698
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.ServerWebSocket ws
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0       ws  Lio/vertx/core/http/ServerWebSocket;
            0    1     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;>;
    Signature: (Lio/vertx/core/http/ServerWebSocket;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;>;)V
    MethodParameters:
         Name  Flags
      ws       
      handler  

  public void example53(io.vertx.core.http.HttpServer);
    descriptor: (Lio/vertx/core/http/HttpServer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServer server
         0: .line 702
            aload 1 /* server */
            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/HTTPExamples.lambda$56(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         1: .line 713
            return
        end local 1 // io.vertx.core.http.HttpServer server
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  server  Lio/vertx/core/http/HttpServer;
    MethodParameters:
        Name  Flags
      server  

  public void example54(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 716
            aload 1 /* client */
            ldc "/some-uri"
            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/HTTPExamples.lambda$57(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.http.HttpClient.webSocket:(Ljava/lang/String;Lio/vertx/core/Handler;)V
         1: .line 722
            return
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lexamples/HTTPExamples;
            0    2     1  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
        Name  Flags
      client  

  public void example55(io.vertx.core.http.WebSocket);
    descriptor: (Lio/vertx/core/http/WebSocket;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.WebSocket websocket
         0: .line 726
            invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
            bipush 123
            invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
            ldc 1.23
            invokeinterface io.vertx.core.buffer.Buffer.appendFloat:(F)Lio/vertx/core/buffer/Buffer;
            astore 2 /* buffer */
        start local 2 // io.vertx.core.buffer.Buffer buffer
         1: .line 727
            aload 1 /* websocket */
            aload 2 /* buffer */
            invokeinterface io.vertx.core.http.WebSocket.writeBinaryMessage:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/WebSocket;
            pop
         2: .line 730
            ldc "hello"
            astore 3 /* message */
        start local 3 // java.lang.String message
         3: .line 731
            aload 1 /* websocket */
            aload 3 /* message */
            invokeinterface io.vertx.core.http.WebSocket.writeTextMessage:(Ljava/lang/String;)Lio/vertx/core/http/WebSocket;
            pop
         4: .line 732
            return
        end local 3 // java.lang.String message
        end local 2 // io.vertx.core.buffer.Buffer buffer
        end local 1 // io.vertx.core.http.WebSocket websocket
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lexamples/HTTPExamples;
            0    5     1  websocket  Lio/vertx/core/http/WebSocket;
            1    5     2     buffer  Lio/vertx/core/buffer/Buffer;
            3    5     3    message  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      websocket  

  public void example56(io.vertx.core.http.WebSocket, io.vertx.core.buffer.Buffer, io.vertx.core.buffer.Buffer, io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/http/WebSocket;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=8, args_size=5
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.WebSocket websocket
        start local 2 // io.vertx.core.buffer.Buffer buffer1
        start local 3 // io.vertx.core.buffer.Buffer buffer2
        start local 4 // io.vertx.core.buffer.Buffer buffer3
         0: .line 736
            aload 2 /* buffer1 */
            iconst_0
            invokestatic io.vertx.core.http.WebSocketFrame.binaryFrame:(Lio/vertx/core/buffer/Buffer;Z)Lio/vertx/core/http/WebSocketFrame;
            astore 5 /* frame1 */
        start local 5 // io.vertx.core.http.WebSocketFrame frame1
         1: .line 737
            aload 1 /* websocket */
            aload 5 /* frame1 */
            invokeinterface io.vertx.core.http.WebSocket.writeFrame:(Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/http/WebSocket;
            pop
         2: .line 739
            aload 3 /* buffer2 */
            iconst_0
            invokestatic io.vertx.core.http.WebSocketFrame.continuationFrame:(Lio/vertx/core/buffer/Buffer;Z)Lio/vertx/core/http/WebSocketFrame;
            astore 6 /* frame2 */
        start local 6 // io.vertx.core.http.WebSocketFrame frame2
         3: .line 740
            aload 1 /* websocket */
            aload 6 /* frame2 */
            invokeinterface io.vertx.core.http.WebSocket.writeFrame:(Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/http/WebSocket;
            pop
         4: .line 743
            aload 3 /* buffer2 */
            iconst_1
            invokestatic io.vertx.core.http.WebSocketFrame.continuationFrame:(Lio/vertx/core/buffer/Buffer;Z)Lio/vertx/core/http/WebSocketFrame;
            astore 7 /* frame3 */
        start local 7 // io.vertx.core.http.WebSocketFrame frame3
         5: .line 744
            aload 1 /* websocket */
            aload 7 /* frame3 */
            invokeinterface io.vertx.core.http.WebSocket.writeFrame:(Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/http/WebSocket;
            pop
         6: .line 746
            return
        end local 7 // io.vertx.core.http.WebSocketFrame frame3
        end local 6 // io.vertx.core.http.WebSocketFrame frame2
        end local 5 // io.vertx.core.http.WebSocketFrame frame1
        end local 4 // io.vertx.core.buffer.Buffer buffer3
        end local 3 // io.vertx.core.buffer.Buffer buffer2
        end local 2 // io.vertx.core.buffer.Buffer buffer1
        end local 1 // io.vertx.core.http.WebSocket websocket
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lexamples/HTTPExamples;
            0    7     1  websocket  Lio/vertx/core/http/WebSocket;
            0    7     2    buffer1  Lio/vertx/core/buffer/Buffer;
            0    7     3    buffer2  Lio/vertx/core/buffer/Buffer;
            0    7     4    buffer3  Lio/vertx/core/buffer/Buffer;
            1    7     5     frame1  Lio/vertx/core/http/WebSocketFrame;
            3    7     6     frame2  Lio/vertx/core/http/WebSocketFrame;
            5    7     7     frame3  Lio/vertx/core/http/WebSocketFrame;
    MethodParameters:
           Name  Flags
      websocket  
      buffer1    
      buffer2    
      buffer3    

  public void example56_1(io.vertx.core.http.WebSocket);
    descriptor: (Lio/vertx/core/http/WebSocket;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.WebSocket websocket
         0: .line 752
            aload 1 /* websocket */
            ldc "Geronimo!"
            invokeinterface io.vertx.core.http.WebSocket.writeFinalTextFrame:(Ljava/lang/String;)Lio/vertx/core/http/WebSocket;
            pop
         1: .line 756
            invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
            bipush 12
            invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
            ldc "foo"
            invokeinterface io.vertx.core.buffer.Buffer.appendString:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            astore 2 /* buff */
        start local 2 // io.vertx.core.buffer.Buffer buff
         2: .line 758
            aload 1 /* websocket */
            aload 2 /* buff */
            invokeinterface io.vertx.core.http.WebSocket.writeFinalBinaryFrame:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/WebSocket;
            pop
         3: .line 760
            return
        end local 2 // io.vertx.core.buffer.Buffer buff
        end local 1 // io.vertx.core.http.WebSocket websocket
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lexamples/HTTPExamples;
            0    4     1  websocket  Lio/vertx/core/http/WebSocket;
            2    4     2       buff  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
           Name  Flags
      websocket  

  public void example57(io.vertx.core.http.WebSocket);
    descriptor: (Lio/vertx/core/http/WebSocket;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.WebSocket websocket
         0: .line 764
            aload 1 /* websocket */
            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/HTTPExamples.lambda$58(Lio/vertx/core/http/WebSocketFrame;)V (6)
                  (Lio/vertx/core/http/WebSocketFrame;)V
            invokeinterface io.vertx.core.http.WebSocket.frameHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocket;
            pop
         1: .line 768
            return
        end local 1 // io.vertx.core.http.WebSocket websocket
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lexamples/HTTPExamples;
            0    2     1  websocket  Lio/vertx/core/http/WebSocket;
    MethodParameters:
           Name  Flags
      websocket  

  public void example58(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.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 772
            new io.vertx.core.http.HttpClientOptions
            dup
            invokespecial io.vertx.core.http.HttpClientOptions.<init>:()V
         1: .line 773
            new io.vertx.core.net.ProxyOptions
            dup
            invokespecial io.vertx.core.net.ProxyOptions.<init>:()V
            getstatic io.vertx.core.net.ProxyType.HTTP:Lio/vertx/core/net/ProxyType;
            invokevirtual io.vertx.core.net.ProxyOptions.setType:(Lio/vertx/core/net/ProxyType;)Lio/vertx/core/net/ProxyOptions;
         2: .line 774
            ldc "localhost"
            invokevirtual io.vertx.core.net.ProxyOptions.setHost:(Ljava/lang/String;)Lio/vertx/core/net/ProxyOptions;
            sipush 3128
            invokevirtual io.vertx.core.net.ProxyOptions.setPort:(I)Lio/vertx/core/net/ProxyOptions;
         3: .line 775
            ldc "username"
            invokevirtual io.vertx.core.net.ProxyOptions.setUsername:(Ljava/lang/String;)Lio/vertx/core/net/ProxyOptions;
            ldc "secret"
            invokevirtual io.vertx.core.net.ProxyOptions.setPassword:(Ljava/lang/String;)Lio/vertx/core/net/ProxyOptions;
         4: .line 773
            invokevirtual io.vertx.core.http.HttpClientOptions.setProxyOptions:(Lio/vertx/core/net/ProxyOptions;)Lio/vertx/core/http/HttpClientOptions;
         5: .line 772
            astore 2 /* options */
        start local 2 // io.vertx.core.http.HttpClientOptions options
         6: .line 776
            aload 1 /* vertx */
            aload 2 /* options */
            invokeinterface io.vertx.core.Vertx.createHttpClient:(Lio/vertx/core/http/HttpClientOptions;)Lio/vertx/core/http/HttpClient;
            pop
         7: .line 778
            return
        end local 2 // io.vertx.core.http.HttpClientOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lexamples/HTTPExamples;
            0    8     1    vertx  Lio/vertx/core/Vertx;
            6    8     2  options  Lio/vertx/core/http/HttpClientOptions;
    MethodParameters:
       Name  Flags
      vertx  

  public void example59(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.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 782
            new io.vertx.core.http.HttpClientOptions
            dup
            invokespecial io.vertx.core.http.HttpClientOptions.<init>:()V
         1: .line 783
            new io.vertx.core.net.ProxyOptions
            dup
            invokespecial io.vertx.core.net.ProxyOptions.<init>:()V
            getstatic io.vertx.core.net.ProxyType.SOCKS5:Lio/vertx/core/net/ProxyType;
            invokevirtual io.vertx.core.net.ProxyOptions.setType:(Lio/vertx/core/net/ProxyType;)Lio/vertx/core/net/ProxyOptions;
         2: .line 784
            ldc "localhost"
            invokevirtual io.vertx.core.net.ProxyOptions.setHost:(Ljava/lang/String;)Lio/vertx/core/net/ProxyOptions;
            sipush 1080
            invokevirtual io.vertx.core.net.ProxyOptions.setPort:(I)Lio/vertx/core/net/ProxyOptions;
         3: .line 785
            ldc "username"
            invokevirtual io.vertx.core.net.ProxyOptions.setUsername:(Ljava/lang/String;)Lio/vertx/core/net/ProxyOptions;
            ldc "secret"
            invokevirtual io.vertx.core.net.ProxyOptions.setPassword:(Ljava/lang/String;)Lio/vertx/core/net/ProxyOptions;
         4: .line 783
            invokevirtual io.vertx.core.http.HttpClientOptions.setProxyOptions:(Lio/vertx/core/net/ProxyOptions;)Lio/vertx/core/http/HttpClientOptions;
         5: .line 782
            astore 2 /* options */
        start local 2 // io.vertx.core.http.HttpClientOptions options
         6: .line 786
            aload 1 /* vertx */
            aload 2 /* options */
            invokeinterface io.vertx.core.Vertx.createHttpClient:(Lio/vertx/core/http/HttpClientOptions;)Lio/vertx/core/http/HttpClient;
            pop
         7: .line 788
            return
        end local 2 // io.vertx.core.http.HttpClientOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lexamples/HTTPExamples;
            0    8     1    vertx  Lio/vertx/core/Vertx;
            6    8     2  options  Lio/vertx/core/http/HttpClientOptions;
    MethodParameters:
       Name  Flags
      vertx  

  public void example60(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.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 792
            new io.vertx.core.http.HttpClientOptions
            dup
            invokespecial io.vertx.core.http.HttpClientOptions.<init>:()V
         1: .line 793
            new io.vertx.core.net.ProxyOptions
            dup
            invokespecial io.vertx.core.net.ProxyOptions.<init>:()V
            getstatic io.vertx.core.net.ProxyType.HTTP:Lio/vertx/core/net/ProxyType;
            invokevirtual io.vertx.core.net.ProxyOptions.setType:(Lio/vertx/core/net/ProxyType;)Lio/vertx/core/net/ProxyOptions;
            invokevirtual io.vertx.core.http.HttpClientOptions.setProxyOptions:(Lio/vertx/core/net/ProxyOptions;)Lio/vertx/core/http/HttpClientOptions;
         2: .line 792
            astore 2 /* options */
        start local 2 // io.vertx.core.http.HttpClientOptions options
         3: .line 794
            aload 1 /* vertx */
            aload 2 /* options */
            invokeinterface io.vertx.core.Vertx.createHttpClient:(Lio/vertx/core/http/HttpClientOptions;)Lio/vertx/core/http/HttpClient;
            astore 3 /* client */
        start local 3 // io.vertx.core.http.HttpClient client
         4: .line 795
            aload 3 /* client */
            ldc "ftp://ftp.gnu.org/gnu/"
            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/HTTPExamples.lambda$59(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.getAbs:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            pop
         5: .line 799
            return
        end local 3 // io.vertx.core.http.HttpClient client
        end local 2 // io.vertx.core.http.HttpClientOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lexamples/HTTPExamples;
            0    6     1    vertx  Lio/vertx/core/Vertx;
            3    6     2  options  Lio/vertx/core/http/HttpClientOptions;
            4    6     3   client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
       Name  Flags
      vertx  

  public void serversharing(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 802
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
            aload 0 /* this */
            invokedynamic handle(Lexamples/HTTPExamples;)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/HTTPExamples.lambda$60(Lio/vertx/core/http/HttpServerRequest;)V (7)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
         1: .line 804
            sipush 8080
            invokeinterface io.vertx.core.http.HttpServer.listen:(I)Lio/vertx/core/http/HttpServer;
            pop
         2: .line 805
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lexamples/HTTPExamples;
            0    3     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void serversharingclient(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 808
            aload 1 /* vertx */
            ldc 100
            aload 1 /* vertx */
            invokedynamic handle(Lio/vertx/core/Vertx;)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/HTTPExamples.lambda$61(Lio/vertx/core/Vertx;Ljava/lang/Long;)V (6)
                  (Ljava/lang/Long;)V
            invokeinterface io.vertx.core.Vertx.setPeriodic:(JLio/vertx/core/Handler;)J
            pop2
         1: .line 815
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lexamples/HTTPExamples;
            0    2     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public void setSSLPerRequest(io.vertx.core.http.HttpClient);
    descriptor: (Lio/vertx/core/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpClient client
         0: .line 818
            aload 1 /* client */
            new io.vertx.core.http.RequestOptions
            dup
            invokespecial io.vertx.core.http.RequestOptions.<init>:()V
         1: .line 819
            ldc "localhost"
            invokevirtual io.vertx.core.http.RequestOptions.setHost:(Ljava/lang/String;)Lio/vertx/core/http/RequestOptions;
         2: .line 820
            sipush 8080
            invokevirtual io.vertx.core.http.RequestOptions.setPort:(I)Lio/vertx/core/http/RequestOptions;
         3: .line 821
            ldc "/"
            invokevirtual io.vertx.core.http.RequestOptions.setURI:(Ljava/lang/String;)Lio/vertx/core/http/RequestOptions;
         4: .line 822
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.http.RequestOptions.setSsl:(Ljava/lang/Boolean;)Lio/vertx/core/http/RequestOptions;
            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/HTTPExamples.lambda$64(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
         5: .line 818
            invokeinterface io.vertx.core.http.HttpClient.getNow:(Lio/vertx/core/http/RequestOptions;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         6: .line 825
            return
        end local 1 // io.vertx.core.http.HttpClient client
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lexamples/HTTPExamples;
            0    7     1  client  Lio/vertx/core/http/HttpClient;
    MethodParameters:
        Name  Flags
      client  

  public static void setIdentityContentEncodingHeader(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 829
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
         1: .line 830
            getstatic io.vertx.core.http.HttpHeaders.CONTENT_ENCODING:Ljava/lang/CharSequence;
            getstatic io.vertx.core.http.HttpHeaders.IDENTITY:Ljava/lang/CharSequence;
            invokeinterface io.vertx.core.http.HttpServerResponse.putHeader:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/HttpServerResponse;
         2: .line 831
            ldc "/path/to/image.jpg"
            invokeinterface io.vertx.core.http.HttpServerResponse.sendFile:(Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
            pop
         3: .line 832
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0  request  Lio/vertx/core/http/HttpServerRequest;
    MethodParameters:
         Name  Flags
      request  

  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=2, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult res
         0: .line 68
            aload 0 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 69
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "Server is now listening!"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         2: .line 70
            goto 4
         3: .line 71
      StackMap locals:
      StackMap stack:
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "Failed to bind!"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         4: .line 73
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServer;>;

  private static void lambda$1(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 81
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  request  Lio/vertx/core/http/HttpServerRequest;

  private static void lambda$2(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 89
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.method:()Lio/vertx/core/http/HttpMethod;
            pop
         1: .line 90
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  request  Lio/vertx/core/http/HttpServerRequest;

  private static void lambda$3(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 96
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            ldc "Hello world"
            invokeinterface io.vertx.core.http.HttpServerResponse.end:(Ljava/lang/String;)V
         1: .line 97
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  request  Lio/vertx/core/http/HttpServerRequest;

  private static void lambda$4(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.Buffer buffer
         0: .line 116
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "I have received a chunk of the body of length "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* buffer */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 117
            return
        end local 0 // io.vertx.core.buffer.Buffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  buffer  Lio/vertx/core/buffer/Buffer;

  private static void lambda$5(io.vertx.core.buffer.Buffer, io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/buffer/Buffer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 1 // io.vertx.core.buffer.Buffer buffer
         0: .line 126
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "I have received a chunk of the body of length "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* buffer */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 127
            aload 0
            aload 1 /* buffer */
            invokeinterface io.vertx.core.buffer.Buffer.appendBuffer:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
            pop
         2: .line 128
            return
        end local 1 // io.vertx.core.buffer.Buffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     1  buffer  Lio/vertx/core/buffer/Buffer;

  private static void lambda$6(io.vertx.core.buffer.Buffer, java.lang.Void);
    descriptor: (Lio/vertx/core/buffer/Buffer;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 131
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Full body received, length = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 132
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Void;

  private static void lambda$7(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.Buffer totalBuffer
         0: .line 138
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Full body received, length = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* totalBuffer */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 139
            return
        end local 0 // io.vertx.core.buffer.Buffer totalBuffer
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0  totalBuffer  Lio/vertx/core/buffer/Buffer;

  private static void lambda$8(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 145
            aload 0 /* request */
            iconst_1
            invokeinterface io.vertx.core.http.HttpServerRequest.setExpectMultipart:(Z)Lio/vertx/core/http/HttpServerRequest;
            pop
         1: .line 146
            aload 0 /* request */
            aload 0 /* request */
            invokedynamic handle(Lio/vertx/core/http/HttpServerRequest;)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/HTTPExamples.lambda$9(Lio/vertx/core/http/HttpServerRequest;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         2: .line 150
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0  request  Lio/vertx/core/http/HttpServerRequest;

  private static void lambda$10(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 156
            aload 0 /* request */
            iconst_1
            invokeinterface io.vertx.core.http.HttpServerRequest.setExpectMultipart:(Z)Lio/vertx/core/http/HttpServerRequest;
            pop
         1: .line 157
            aload 0 /* request */
            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/HTTPExamples.lambda$11(Lio/vertx/core/http/HttpServerFileUpload;)V (6)
                  (Lio/vertx/core/http/HttpServerFileUpload;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.uploadHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         2: .line 160
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0  request  Lio/vertx/core/http/HttpServerRequest;

  private static void lambda$12(io.vertx.core.http.HttpServerFileUpload);
    descriptor: (Lio/vertx/core/http/HttpServerFileUpload;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerFileUpload upload
         0: .line 166
            aload 0 /* upload */
            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/HTTPExamples.lambda$13(Lio/vertx/core/buffer/Buffer;)V (6)
                  (Lio/vertx/core/buffer/Buffer;)V
            invokeinterface io.vertx.core.http.HttpServerFileUpload.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerFileUpload;
            pop
         1: .line 169
            return
        end local 0 // io.vertx.core.http.HttpServerFileUpload upload
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  upload  Lio/vertx/core/http/HttpServerFileUpload;

  private static void lambda$14(io.vertx.core.http.HttpServerFileUpload);
    descriptor: (Lio/vertx/core/http/HttpServerFileUpload;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerFileUpload upload
         0: .line 175
            aload 0 /* upload */
            new java.lang.StringBuilder
            dup
            ldc "myuploads_directory/"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* upload */
            invokeinterface io.vertx.core.http.HttpServerFileUpload.filename:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.http.HttpServerFileUpload.streamToFileSystem:(Ljava/lang/String;)Lio/vertx/core/http/HttpServerFileUpload;
            pop
         1: .line 176
            return
        end local 0 // io.vertx.core.http.HttpServerFileUpload upload
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  upload  Lio/vertx/core/http/HttpServerFileUpload;

  private static void lambda$15(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 237
            ldc ""
            astore 1 /* file */
        start local 1 // java.lang.String file
         1: .line 238
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.path:()Ljava/lang/String;
            ldc "/"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 239
            ldc "index.html"
            astore 1 /* file */
         3: .line 240
            goto 6
      StackMap locals: java.lang.String
      StackMap stack:
         4: aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.path:()Ljava/lang/String;
            ldc ".."
            invokevirtual java.lang.String.contains:(Ljava/lang/CharSequence;)Z
            ifne 6
         5: .line 241
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.path:()Ljava/lang/String;
            astore 1 /* file */
         6: .line 243
      StackMap locals:
      StackMap stack:
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            new java.lang.StringBuilder
            dup
            ldc "web/"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* file */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.http.HttpServerResponse.sendFile:(Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
            pop
        end local 1 // java.lang.String file
         7: .line 244
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0  request  Lio/vertx/core/http/HttpServerRequest;
            1    7     1     file  Ljava/lang/String;

  private static void lambda$16(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 249
            lconst_0
            lstore 1 /* offset */
        start local 1 // long offset
         1: .line 251
            aload 0 /* request */
            ldc "start"
            invokeinterface io.vertx.core.http.HttpServerRequest.getParam:(Ljava/lang/String;)Ljava/lang/String;
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            lstore 1 /* offset */
         2: .line 252
            goto 4
      StackMap locals: io.vertx.core.http.HttpServerRequest long
      StackMap stack: java.lang.NumberFormatException
         3: pop
         4: .line 256
      StackMap locals:
      StackMap stack:
            ldc 9223372036854775807
            lstore 3 /* end */
        start local 3 // long end
         5: .line 258
            aload 0 /* request */
            ldc "end"
            invokeinterface io.vertx.core.http.HttpServerRequest.getParam:(Ljava/lang/String;)Ljava/lang/String;
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            lstore 3 /* end */
         6: .line 259
            goto 8
      StackMap locals: io.vertx.core.http.HttpServerRequest long long
      StackMap stack: java.lang.NumberFormatException
         7: pop
         8: .line 263
      StackMap locals:
      StackMap stack:
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            ldc "web/mybigfile.txt"
            lload 1 /* offset */
            lload 3 /* end */
            invokeinterface io.vertx.core.http.HttpServerResponse.sendFile:(Ljava/lang/String;JJ)Lio/vertx/core/http/HttpServerResponse;
            pop
        end local 3 // long end
        end local 1 // long offset
         9: .line 264
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0  request  Lio/vertx/core/http/HttpServerRequest;
            1    9     1   offset  J
            5    9     3      end  J
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.NumberFormatException
           5     6       7  Class java.lang.NumberFormatException

  private static void lambda$17(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 269
            lconst_0
            lstore 1 /* offset */
        start local 1 // long offset
         1: .line 271
            aload 0 /* request */
            ldc "start"
            invokeinterface io.vertx.core.http.HttpServerRequest.getParam:(Ljava/lang/String;)Ljava/lang/String;
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            lstore 1 /* offset */
         2: .line 272
            goto 4
      StackMap locals: io.vertx.core.http.HttpServerRequest long
      StackMap stack: java.lang.NumberFormatException
         3: pop
         4: .line 276
      StackMap locals:
      StackMap stack:
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            ldc "web/mybigfile.txt"
            lload 1 /* offset */
            invokeinterface io.vertx.core.http.HttpServerResponse.sendFile:(Ljava/lang/String;J)Lio/vertx/core/http/HttpServerResponse;
            pop
        end local 1 // long offset
         5: .line 277
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0  request  Lio/vertx/core/http/HttpServerRequest;
            1    5     1   offset  J
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.NumberFormatException

  private static void lambda$18(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 282
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            astore 1 /* response */
        start local 1 // io.vertx.core.http.HttpServerResponse response
         1: .line 283
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.method:()Lio/vertx/core/http/HttpMethod;
            getstatic io.vertx.core.http.HttpMethod.PUT:Lio/vertx/core/http/HttpMethod;
            if_acmpne 6
         2: .line 284
            aload 1 /* response */
            iconst_1
            invokeinterface io.vertx.core.http.HttpServerResponse.setChunked:(Z)Lio/vertx/core/http/HttpServerResponse;
            pop
         3: .line 285
            aload 0 /* request */
            aload 1 /* response */
            invokestatic io.vertx.core.streams.Pump.pump:(Lio/vertx/core/streams/ReadStream;Lio/vertx/core/streams/WriteStream;)Lio/vertx/core/streams/Pump;
            invokeinterface io.vertx.core.streams.Pump.start:()Lio/vertx/core/streams/Pump;
            pop
         4: .line 286
            aload 0 /* request */
            aload 1 /* response */
            invokedynamic handle(Lio/vertx/core/http/HttpServerResponse;)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/HTTPExamples.lambda$19(Lio/vertx/core/http/HttpServerResponse;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         5: .line 287
            goto 7
         6: .line 288
      StackMap locals: io.vertx.core.http.HttpServerResponse
      StackMap stack:
            aload 1 /* response */
            sipush 400
            invokeinterface io.vertx.core.http.HttpServerResponse.setStatusCode:(I)Lio/vertx/core/http/HttpServerResponse;
            invokeinterface io.vertx.core.http.HttpServerResponse.end:()V
        end local 1 // io.vertx.core.http.HttpServerResponse response
         7: .line 290
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0   request  Lio/vertx/core/http/HttpServerRequest;
            1    7     1  response  Lio/vertx/core/http/HttpServerResponse;

  private static void lambda$20(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 313
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 314
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$21(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 322
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 323
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$22(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 327
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 328
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$23(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 336
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 337
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$24(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 341
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 342
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$25(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 350
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 351
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$26(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 354
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 355
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$27(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 362
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 363
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$28(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 376
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 377
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$29(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 382
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 383
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$30(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 458
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 459
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$31(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.lang.Throwable e
         0: .line 461
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received exception: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* e */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 462
            aload 0 /* e */
            invokevirtual java.lang.Throwable.printStackTrace:()V
         2: .line 463
            return
        end local 0 // java.lang.Throwable e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     e  Ljava/lang/Throwable;

  private static void lambda$32(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 468
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            sipush 200
            if_icmpne 3
         1: .line 469
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "Everything fine"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         2: .line 470
            return
         3: .line 472
      StackMap locals:
      StackMap stack:
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            sipush 500
            if_icmpne 6
         4: .line 473
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "Unexpected behavior on the server side"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         5: .line 474
            return
         6: .line 476
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$33(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 484
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 485
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$34(io.vertx.core.http.HttpClientRequest, java.lang.Void);
    descriptor: (Lio/vertx/core/http/HttpClientRequest;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 492
            aload 0
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;

  private static void lambda$35(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 501
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Status code is "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 504
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Status message is "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         2: .line 505
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$36(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 520
            aload 0 /* response */
            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/HTTPExamples.lambda$37(Lio/vertx/core/buffer/Buffer;)V (6)
                  (Lio/vertx/core/buffer/Buffer;)V
            invokeinterface io.vertx.core.http.HttpClientResponse.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
            pop
         1: .line 523
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$38(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 531
            invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
            astore 1 /* totalBuffer */
        start local 1 // io.vertx.core.buffer.Buffer totalBuffer
         1: .line 533
            aload 0 /* response */
            aload 1 /* totalBuffer */
            invokedynamic handle(Lio/vertx/core/buffer/Buffer;)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/HTTPExamples.lambda$39(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/buffer/Buffer;)V (6)
                  (Lio/vertx/core/buffer/Buffer;)V
            invokeinterface io.vertx.core.http.HttpClientResponse.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
            pop
         2: .line 539
            aload 0 /* response */
            aload 1 /* totalBuffer */
            invokedynamic handle(Lio/vertx/core/buffer/Buffer;)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/HTTPExamples.lambda$40(Lio/vertx/core/buffer/Buffer;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.http.HttpClientResponse.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
            pop
        end local 1 // io.vertx.core.buffer.Buffer totalBuffer
         3: .line 543
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0     response  Lio/vertx/core/http/HttpClientResponse;
            1    3     1  totalBuffer  Lio/vertx/core/buffer/Buffer;

  private static void lambda$41(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 550
            aload 0 /* response */
            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/HTTPExamples.lambda$42(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;
            pop
         1: .line 554
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$43(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 560
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 561
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$44(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 571
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 572
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private io.vertx.core.Future lambda$45(io.vertx.core.http.HttpClient, io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClient;Lio/vertx/core/http/HttpClientResponse;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // examples.HTTPExamples this
        start local 2 // io.vertx.core.http.HttpClientResponse response
         0: .line 584
            aload 2 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            sipush 301
            if_icmpne 3
            aload 2 /* response */
            ldc "Location"
            invokeinterface io.vertx.core.http.HttpClientResponse.getHeader:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 3
         1: .line 587
            aload 0 /* this */
            aload 2 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.request:()Lio/vertx/core/http/HttpClientRequest;
            invokeinterface io.vertx.core.http.HttpClientRequest.absoluteURI:()Ljava/lang/String;
            aload 2 /* response */
            ldc "Location"
            invokeinterface io.vertx.core.http.HttpClientResponse.getHeader:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual examples.HTTPExamples.resolveURI:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* absoluteURI */
        start local 3 // java.lang.String absoluteURI
         2: .line 590
            aload 1
            aload 3 /* absoluteURI */
            invokeinterface io.vertx.core.http.HttpClient.getAbs:(Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
        end local 3 // java.lang.String absoluteURI
         3: .line 594
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // io.vertx.core.http.HttpClientResponse response
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lexamples/HTTPExamples;
            0    4     2     response  Lio/vertx/core/http/HttpClientResponse;
            2    3     3  absoluteURI  Ljava/lang/String;

  private static void lambda$46(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 601
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 602
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$47(io.vertx.core.http.HttpClientRequest, java.lang.Void);
    descriptor: (Lio/vertx/core/http/HttpClientRequest;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 608
            aload 0
            ldc "Some data"
            invokeinterface io.vertx.core.http.HttpClientRequest.write:(Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            pop
         1: .line 609
            aload 0
            ldc "Some more data"
            invokeinterface io.vertx.core.http.HttpClientRequest.write:(Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
            pop
         2: .line 610
            aload 0
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()V
         3: .line 611
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     1     v  Ljava/lang/Void;

  private static void lambda$48(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 617
            aload 0 /* request */
            ldc "Expect"
            invokeinterface io.vertx.core.http.HttpServerRequest.getHeader:(Ljava/lang/String;)Ljava/lang/String;
            ldc "100-Continue"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 4
         1: .line 620
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            invokeinterface io.vertx.core.http.HttpServerResponse.writeContinue:()Lio/vertx/core/http/HttpServerResponse;
            pop
         2: .line 623
            aload 0 /* request */
            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/HTTPExamples.lambda$49(Lio/vertx/core/buffer/Buffer;)V (6)
                  (Lio/vertx/core/buffer/Buffer;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.bodyHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         3: .line 627
            aload 0 /* request */
            aload 0 /* request */
            invokedynamic handle(Lio/vertx/core/http/HttpServerRequest;)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/HTTPExamples.lambda$50(Lio/vertx/core/http/HttpServerRequest;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.http.HttpServerRequest.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            pop
         4: .line 631
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0  request  Lio/vertx/core/http/HttpServerRequest;

  private static void lambda$51(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 637
            aload 0 /* request */
            ldc "Expect"
            invokeinterface io.vertx.core.http.HttpServerRequest.getHeader:(Ljava/lang/String;)Ljava/lang/String;
            ldc "100-Continue"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 11
         1: .line 640
            iconst_1
            istore 1 /* rejectAndClose */
        start local 1 // boolean rejectAndClose
         2: .line 641
            iload 1 /* rejectAndClose */
            ifeq 8
         3: .line 645
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
         4: .line 646
            sipush 405
            invokeinterface io.vertx.core.http.HttpServerResponse.setStatusCode:(I)Lio/vertx/core/http/HttpServerResponse;
         5: .line 647
            ldc "Connection"
            ldc "close"
            invokeinterface io.vertx.core.http.HttpServerResponse.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
         6: .line 648
            invokeinterface io.vertx.core.http.HttpServerResponse.end:()V
         7: .line 649
            goto 11
         8: .line 653
      StackMap locals: int
      StackMap stack:
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
         9: .line 654
            sipush 405
            invokeinterface io.vertx.core.http.HttpServerResponse.setStatusCode:(I)Lio/vertx/core/http/HttpServerResponse;
        10: .line 655
            invokeinterface io.vertx.core.http.HttpServerResponse.end:()V
        end local 1 // boolean rejectAndClose
        11: .line 658
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   12     0         request  Lio/vertx/core/http/HttpServerRequest;
            2   11     1  rejectAndClose  Z

  private static void lambda$52(io.vertx.core.http.ServerWebSocket);
    descriptor: (Lio/vertx/core/http/ServerWebSocket;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.ServerWebSocket websocket
         0: .line 664
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "Connected!"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 665
            return
        end local 0 // io.vertx.core.http.ServerWebSocket websocket
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0  websocket  Lio/vertx/core/http/ServerWebSocket;

  private static void lambda$53(io.vertx.core.http.ServerWebSocket);
    descriptor: (Lio/vertx/core/http/ServerWebSocket;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.ServerWebSocket websocket
         0: .line 671
            aload 0 /* websocket */
            invokeinterface io.vertx.core.http.ServerWebSocket.path:()Ljava/lang/String;
            ldc "/myapi"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 672
            aload 0 /* websocket */
            invokeinterface io.vertx.core.http.ServerWebSocket.reject:()V
         2: .line 676
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.ServerWebSocket websocket
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0  websocket  Lio/vertx/core/http/ServerWebSocket;

  private static void lambda$54(io.vertx.core.http.ServerWebSocket);
    descriptor: (Lio/vertx/core/http/ServerWebSocket;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.ServerWebSocket websocket
         0: .line 681
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 682
            aload 0 /* websocket */
            aload 1 /* promise */
            invokeinterface io.vertx.core.http.ServerWebSocket.setHandshake:(Lio/vertx/core/Promise;)V
         2: .line 683
            aload 0 /* websocket */
            aload 1 /* promise */
            invokedynamic handle(Lio/vertx/core/Promise;)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/HTTPExamples.lambda$55(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokestatic examples.HTTPExamples.authenticate:(Lio/vertx/core/http/ServerWebSocket;Lio/vertx/core/Handler;)V
        end local 1 // io.vertx.core.Promise promise
         3: .line 693
            return
        end local 0 // io.vertx.core.http.ServerWebSocket websocket
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0  websocket  Lio/vertx/core/http/ServerWebSocket;
            1    3     1    promise  Lio/vertx/core/Promise<Ljava/lang/Integer;>;

  private static void lambda$56(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest request
         0: .line 703
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.path:()Ljava/lang/String;
            ldc "/myapi"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 3
         1: .line 705
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.upgrade:()Lio/vertx/core/http/ServerWebSocket;
            pop
         2: .line 708
            goto 4
         3: .line 710
      StackMap locals:
      StackMap stack:
            aload 0 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            sipush 400
            invokeinterface io.vertx.core.http.HttpServerResponse.setStatusCode:(I)Lio/vertx/core/http/HttpServerResponse;
            invokeinterface io.vertx.core.http.HttpServerResponse.end:()V
         4: .line 712
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.HttpServerRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0  request  Lio/vertx/core/http/HttpServerRequest;

  private static void lambda$57(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult res
         0: .line 717
            aload 0 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 718
            aload 0 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.http.WebSocket
            pop
         2: .line 719
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "Connected!"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         3: .line 721
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/http/WebSocket;>;

  private static void lambda$58(io.vertx.core.http.WebSocketFrame);
    descriptor: (Lio/vertx/core/http/WebSocketFrame;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.WebSocketFrame frame
         0: .line 765
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "Received a frame of size!"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 766
            return
        end local 0 // io.vertx.core.http.WebSocketFrame frame
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  frame  Lio/vertx/core/http/WebSocketFrame;

  private static void lambda$59(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 796
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 797
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private void lambda$60(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // examples.HTTPExamples this
        start local 1 // io.vertx.core.http.HttpServerRequest request
         0: .line 803
            aload 1 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            new java.lang.StringBuilder
            dup
            ldc "Hello from server "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.http.HttpServerResponse.end:(Ljava/lang/String;)V
         1: .line 804
            return
        end local 1 // io.vertx.core.http.HttpServerRequest request
        end local 0 // examples.HTTPExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lexamples/HTTPExamples;
            0    2     1  request  Lio/vertx/core/http/HttpServerRequest;

  private static void lambda$61(io.vertx.core.Vertx, java.lang.Long);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/Long;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=5, locals=2, args_size=2
        start local 1 // java.lang.Long l
         0: .line 809
            aload 0
            invokeinterface io.vertx.core.Vertx.createHttpClient:()Lio/vertx/core/http/HttpClient;
            sipush 8080
            ldc "localhost"
            ldc "/"
            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/HTTPExamples.lambda$62(Lio/vertx/core/http/HttpClientResponse;)V (6)
                  (Lio/vertx/core/http/HttpClientResponse;)V
            invokeinterface io.vertx.core.http.HttpClient.getNow:(ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClient;
            pop
         1: .line 814
            return
        end local 1 // java.lang.Long l
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     l  Ljava/lang/Long;

  private static void lambda$64(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse response
         0: .line 823
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received response with status code "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* response */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 824
            return
        end local 0 // io.vertx.core.http.HttpClientResponse response
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  response  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$9(io.vertx.core.http.HttpServerRequest, java.lang.Void);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 148
            aload 0
            invokeinterface io.vertx.core.http.HttpServerRequest.formAttributes:()Lio/vertx/core/MultiMap;
            pop
         1: .line 149
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Void;

  private static void lambda$11(io.vertx.core.http.HttpServerFileUpload);
    descriptor: (Lio/vertx/core/http/HttpServerFileUpload;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerFileUpload upload
         0: .line 158
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Got a file upload "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* upload */
            invokeinterface io.vertx.core.http.HttpServerFileUpload.name:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 159
            return
        end local 0 // io.vertx.core.http.HttpServerFileUpload upload
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  upload  Lio/vertx/core/http/HttpServerFileUpload;

  private static void lambda$13(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.Buffer chunk
         0: .line 167
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received a chunk of the upload of length "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 168
            return
        end local 0 // io.vertx.core.buffer.Buffer chunk
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  chunk  Lio/vertx/core/buffer/Buffer;

  private static void lambda$19(io.vertx.core.http.HttpServerResponse, java.lang.Void);
    descriptor: (Lio/vertx/core/http/HttpServerResponse;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 286
            aload 0
            invokeinterface io.vertx.core.http.HttpServerResponse.end:()V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;

  private static void lambda$37(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.Buffer buffer
         0: .line 521
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received a part of the response body: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* buffer */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 522
            return
        end local 0 // io.vertx.core.buffer.Buffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  buffer  Lio/vertx/core/buffer/Buffer;

  private static void lambda$39(io.vertx.core.buffer.Buffer, io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/buffer/Buffer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 1 // io.vertx.core.buffer.Buffer buffer
         0: .line 534
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Received a part of the response body: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* buffer */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 536
            aload 0
            aload 1 /* buffer */
            invokeinterface io.vertx.core.buffer.Buffer.appendBuffer:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
            pop
         2: .line 537
            return
        end local 1 // io.vertx.core.buffer.Buffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     1  buffer  Lio/vertx/core/buffer/Buffer;

  private static void lambda$40(io.vertx.core.buffer.Buffer, java.lang.Void);
    descriptor: (Lio/vertx/core/buffer/Buffer;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 541
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Total response body length is "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 542
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Void;

  private static void lambda$42(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.Buffer totalBuffer
         0: .line 552
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Total response body length is "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* totalBuffer */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 553
            return
        end local 0 // io.vertx.core.buffer.Buffer totalBuffer
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0  totalBuffer  Lio/vertx/core/buffer/Buffer;

  private static void lambda$49(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.Buffer body
         0: .line 625
            return
        end local 0 // io.vertx.core.buffer.Buffer body
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  body  Lio/vertx/core/buffer/Buffer;

  private static void lambda$50(io.vertx.core.http.HttpServerRequest, java.lang.Void);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 628
            aload 0
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            invokeinterface io.vertx.core.http.HttpServerResponse.end:()V
         1: .line 629
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Void;

  private static void lambda$55(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult ar
         0: .line 684
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 5
         1: .line 687
            aload 0
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 2
            bipush 101
            goto 3
      StackMap locals:
      StackMap stack: io.vertx.core.Promise
         2: sipush 401
      StackMap locals: io.vertx.core.Promise io.vertx.core.AsyncResult
      StackMap stack: io.vertx.core.Promise int
         3: invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         4: .line 688
            goto 6
         5: .line 690
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         6: .line 692
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     1    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;

  private static void lambda$62(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpClientResponse resp
         0: .line 810
            aload 0 /* resp */
            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/HTTPExamples.lambda$63(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;
            pop
         1: .line 813
            return
        end local 0 // io.vertx.core.http.HttpClientResponse resp
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  resp  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$63(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.Buffer body
         0: .line 811
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            aload 0 /* body */
            ldc "ISO-8859-1"
            invokeinterface io.vertx.core.buffer.Buffer.toString:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 812
            return
        end local 0 // io.vertx.core.buffer.Buffer body
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  body  Lio/vertx/core/buffer/Buffer;
}
SourceFile: "HTTPExamples.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles