public class io.vertx.core.http.impl.HttpClientRequestImpl extends io.vertx.core.http.impl.HttpClientRequestBase implements io.vertx.core.http.HttpClientRequest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.http.impl.HttpClientRequestImpl
  super_class: io.vertx.core.http.impl.HttpClientRequestBase
{
  static final io.vertx.core.impl.logging.Logger log;
    descriptor: Lio/vertx/core/impl/logging/Logger;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  private final io.vertx.core.Promise<java.lang.Void> endPromise;
    descriptor: Lio/vertx/core/Promise;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/core/Promise<Ljava/lang/Void;>;

  private final io.vertx.core.Future<java.lang.Void> endFuture;
    descriptor: Lio/vertx/core/Future;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/core/Future<Ljava/lang/Void;>;

  private boolean chunked;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.Handler<java.lang.Void> continueHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  private io.vertx.core.Handler<java.lang.Void> drainHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  private io.vertx.core.Handler<java.lang.Throwable> exceptionHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Throwable;>;

  private boolean ended;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Throwable reset;
    descriptor: Ljava/lang/Throwable;
    flags: (0x0002) ACC_PRIVATE

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

  private io.vertx.core.http.impl.headers.HeadersMultiMap headers;
    descriptor: Lio/vertx/core/http/impl/headers/HeadersMultiMap;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.http.StreamPriority priority;
    descriptor: Lio/vertx/core/http/StreamPriority;
    flags: (0x0002) ACC_PRIVATE

  private boolean headWritten;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean isConnect;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 49
            ldc Lio/vertx/core/http/impl/HttpClientRequestImpl;
            invokestatic io.vertx.core.impl.logging.LoggerFactory.getLogger:(Ljava/lang/Class;)Lio/vertx/core/impl/logging/Logger;
            putstatic io.vertx.core.http.impl.HttpClientRequestImpl.log:Lio/vertx/core/impl/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(io.vertx.core.http.impl.HttpClientImpl, io.vertx.core.http.impl.HttpClientStream, io.vertx.core.impl.future.PromiseInternal<io.vertx.core.http.HttpClientResponse>, boolean, io.vertx.core.http.HttpMethod, io.vertx.core.net.SocketAddress, java.lang.String, int, java.lang.String);
    descriptor: (Lio/vertx/core/http/impl/HttpClientImpl;Lio/vertx/core/http/impl/HttpClientStream;Lio/vertx/core/impl/future/PromiseInternal;ZLio/vertx/core/http/HttpMethod;Lio/vertx/core/net/SocketAddress;Ljava/lang/String;ILjava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=10, locals=10, args_size=10
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.http.impl.HttpClientImpl client
        start local 2 // io.vertx.core.http.impl.HttpClientStream stream
        start local 3 // io.vertx.core.impl.future.PromiseInternal responsePromise
        start local 4 // boolean ssl
        start local 5 // io.vertx.core.http.HttpMethod method
        start local 6 // io.vertx.core.net.SocketAddress server
        start local 7 // java.lang.String host
        start local 8 // int port
        start local 9 // java.lang.String requestURI
         0: .line 67
            aload 0 /* this */
            aload 1 /* client */
            aload 2 /* stream */
            aload 3 /* responsePromise */
            iload 4 /* ssl */
            aload 5 /* method */
            aload 6 /* server */
            aload 7 /* host */
            iload 8 /* port */
            aload 9 /* requestURI */
            invokespecial io.vertx.core.http.impl.HttpClientRequestBase.<init>:(Lio/vertx/core/http/impl/HttpClientImpl;Lio/vertx/core/http/impl/HttpClientStream;Lio/vertx/core/impl/future/PromiseInternal;ZLio/vertx/core/http/HttpMethod;Lio/vertx/core/net/SocketAddress;Ljava/lang/String;ILjava/lang/String;)V
         1: .line 68
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.chunked:Z
         2: .line 69
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.endPromise:Lio/vertx/core/Promise;
         3: .line 70
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.endPromise:Lio/vertx/core/Promise;
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.endFuture:Lio/vertx/core/Future;
         4: .line 71
            aload 0 /* this */
            getstatic io.vertx.core.http.impl.HttpUtils.DEFAULT_STREAM_PRIORITY:Lio/vertx/core/http/StreamPriority;
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.priority:Lio/vertx/core/http/StreamPriority;
         5: .line 74
            aload 2 /* stream */
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/http/impl/HttpClientRequestImpl;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/http/impl/HttpClientRequestImpl.handleContinue(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.http.impl.HttpClientStream.continueHandler:(Lio/vertx/core/Handler;)V
         6: .line 75
            aload 2 /* stream */
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/http/impl/HttpClientRequestImpl;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/http/impl/HttpClientRequestImpl.handleDrained(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.http.impl.HttpClientStream.drainHandler:(Lio/vertx/core/Handler;)V
         7: .line 76
            aload 2 /* stream */
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/http/impl/HttpClientRequestImpl;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/http/impl/HttpClientRequestImpl.handleException(Ljava/lang/Throwable;)V (5)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.http.impl.HttpClientStream.exceptionHandler:(Lio/vertx/core/Handler;)V
         8: .line 77
            return
        end local 9 // java.lang.String requestURI
        end local 8 // int port
        end local 7 // java.lang.String host
        end local 6 // io.vertx.core.net.SocketAddress server
        end local 5 // io.vertx.core.http.HttpMethod method
        end local 4 // boolean ssl
        end local 3 // io.vertx.core.impl.future.PromiseInternal responsePromise
        end local 2 // io.vertx.core.http.impl.HttpClientStream stream
        end local 1 // io.vertx.core.http.impl.HttpClientImpl client
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    9     0             this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    9     1           client  Lio/vertx/core/http/impl/HttpClientImpl;
            0    9     2           stream  Lio/vertx/core/http/impl/HttpClientStream;
            0    9     3  responsePromise  Lio/vertx/core/impl/future/PromiseInternal<Lio/vertx/core/http/HttpClientResponse;>;
            0    9     4              ssl  Z
            0    9     5           method  Lio/vertx/core/http/HttpMethod;
            0    9     6           server  Lio/vertx/core/net/SocketAddress;
            0    9     7             host  Ljava/lang/String;
            0    9     8             port  I
            0    9     9       requestURI  Ljava/lang/String;
    Signature: (Lio/vertx/core/http/impl/HttpClientImpl;Lio/vertx/core/http/impl/HttpClientStream;Lio/vertx/core/impl/future/PromiseInternal<Lio/vertx/core/http/HttpClientResponse;>;ZLio/vertx/core/http/HttpMethod;Lio/vertx/core/net/SocketAddress;Ljava/lang/String;ILjava/lang/String;)V
    MethodParameters:
                 Name  Flags
      client           
      stream           
      responsePromise  
      ssl              
      method           
      server           
      host             
      port             
      requestURI       

  void handleException(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.Throwable t
         0: .line 81
            aload 0 /* this */
            aload 1 /* t */
            invokespecial io.vertx.core.http.impl.HttpClientRequestBase.handleException:(Ljava/lang/Throwable;)V
         1: .line 83
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         2: .line 84
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.exceptionHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         3: .line 85
            aload 2 /* handler */
            ifnull 4
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.endFuture:Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.isComplete:()Z
            ifeq 7
         4: .line 86
      StackMap locals: io.vertx.core.Handler io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack:
            getstatic io.vertx.core.http.impl.HttpClientRequestImpl.log:Lio/vertx/core/impl/logging/Logger;
            aload 1 /* t */
            invokeinterface io.vertx.core.impl.logging.Logger.error:(Ljava/lang/Object;)V
         5: .line 87
            aload 3
            monitorexit
         6: return
         7: .line 83
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
         8: goto 11
        end local 2 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl java.lang.Throwable top io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack: java.lang.Throwable
         9: aload 3
            monitorexit
        10: athrow
        start local 2 // io.vertx.core.Handler handler
        11: .line 91
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl java.lang.Throwable io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            aload 1 /* t */
            aload 2 /* handler */
            invokeinterface io.vertx.core.impl.ContextInternal.emit:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
        12: .line 92
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.endPromise:Lio/vertx/core/Promise;
            aload 1 /* t */
            invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/Throwable;)Z
            pop
        13: .line 93
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Throwable t
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0   14     1        t  Ljava/lang/Throwable;
            3    9     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
           11   14     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
      Exception table:
        from    to  target  type
           2     6       9  any
           7     8       9  any
           9    10       9  any
    MethodParameters:
      Name  Flags
      t     

  public synchronized io.vertx.core.http.HttpClientRequest setFollowRedirects(boolean);
    descriptor: (Z)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // boolean followRedirects
         0: .line 97
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         1: .line 98
            iload 1 /* followRedirects */
            ifeq 4
         2: .line 99
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.client:Lio/vertx/core/http/impl/HttpClientImpl;
            invokevirtual io.vertx.core.http.impl.HttpClientImpl.getOptions:()Lio/vertx/core/http/HttpClientOptions;
            invokevirtual io.vertx.core.http.HttpClientOptions.getMaxRedirects:()I
            iconst_1
            isub
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.followRedirects:I
         3: .line 100
            goto 5
         4: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.followRedirects:I
         5: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // boolean followRedirects
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    6     1  followRedirects  Z
    MethodParameters:
                 Name  Flags
      followRedirects  

  public synchronized io.vertx.core.http.HttpClientRequest setMaxRedirects(int);
    descriptor: (I)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // int maxRedirects
         0: .line 108
            iload 1 /* maxRedirects */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Max redirects must be >= 0"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         3: .line 109
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         4: .line 110
            aload 0 /* this */
            iload 1 /* maxRedirects */
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.followRedirects:I
         5: .line 111
            aload 0 /* this */
            areturn
        end local 1 // int maxRedirects
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    6     1  maxRedirects  I
    MethodParameters:
              Name  Flags
      maxRedirects  

  public synchronized io.vertx.core.http.impl.HttpClientRequestImpl setChunked(boolean);
    descriptor: (Z)Lio/vertx/core/http/impl/HttpClientRequestImpl;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // boolean chunked
         0: .line 116
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         1: .line 117
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.headWritten:Z
            ifeq 3
         2: .line 118
            new java.lang.IllegalStateException
            dup
            ldc "Cannot set chunked after data has been written on request"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.client:Lio/vertx/core/http/impl/HttpClientImpl;
            invokevirtual io.vertx.core.http.impl.HttpClientImpl.getOptions:()Lio/vertx/core/http/HttpClientOptions;
            invokevirtual io.vertx.core.http.HttpClientOptions.getProtocolVersion:()Lio/vertx/core/http/HttpVersion;
            getstatic io.vertx.core.http.HttpVersion.HTTP_1_0:Lio/vertx/core/http/HttpVersion;
            if_acmpeq 5
         4: .line 122
            aload 0 /* this */
            iload 1 /* chunked */
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.chunked:Z
         5: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // boolean chunked
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    6     1  chunked  Z
    MethodParameters:
         Name  Flags
      chunked  

  public synchronized boolean isChunked();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 129
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.chunked:Z
            ireturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;

  public synchronized io.vertx.core.MultiMap headers();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 134
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.headers:Lio/vertx/core/http/impl/headers/HeadersMultiMap;
            ifnonnull 2
         1: .line 135
            aload 0 /* this */
            invokestatic io.vertx.core.http.impl.headers.HeadersMultiMap.httpHeaders:()Lio/vertx/core/http/impl/headers/HeadersMultiMap;
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.headers:Lio/vertx/core/http/impl/headers/HeadersMultiMap;
         2: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.headers:Lio/vertx/core/http/impl/headers/HeadersMultiMap;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;

  public synchronized io.vertx.core.http.HttpClientRequest putHeader(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 142
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         1: .line 143
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         2: .line 144
            aload 0 /* this */
            areturn
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1   name  Ljava/lang/String;
            0    3     2  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      name   
      value  

  public synchronized io.vertx.core.http.HttpClientRequest putHeader(java.lang.String, java.lang.Iterable<java.lang.String>);
    descriptor: (Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Iterable values
         0: .line 149
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         1: .line 150
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* values */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/MultiMap;
            pop
         2: .line 151
            aload 0 /* this */
            areturn
        end local 2 // java.lang.Iterable values
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    name  Ljava/lang/String;
            0    3     2  values  Ljava/lang/Iterable<Ljava/lang/String;>;
    Signature: (Ljava/lang/String;Ljava/lang/Iterable<Ljava/lang/String;>;)Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
        Name  Flags
      name    
      values  

  public synchronized io.vertx.core.http.HttpClientRequest setWriteQueueMaxSize(int);
    descriptor: (I)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // int maxSize
         0: .line 156
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         1: .line 157
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            iload 1 /* maxSize */
            invokeinterface io.vertx.core.http.impl.HttpClientStream.doSetWriteQueueMaxSize:(I)V
         2: .line 158
            aload 0 /* this */
            areturn
        end local 1 // int maxSize
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1  maxSize  I
    MethodParameters:
         Name  Flags
      maxSize  

  public boolean writeQueueFull();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 163
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 164
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         2: .line 163
            aload 1
            monitorexit
         3: goto 6
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack: java.lang.Throwable
         4: aload 1
            monitorexit
         5: athrow
         6: .line 166
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            invokeinterface io.vertx.core.http.impl.HttpClientStream.isNotWritable:()Z
            ireturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any

  public io.vertx.core.http.HttpVersion version();
    descriptor: ()Lio/vertx/core/http/HttpVersion;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 171
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            invokeinterface io.vertx.core.http.impl.HttpClientStream.version:()Lio/vertx/core/http/HttpVersion;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;

  private synchronized io.vertx.core.Handler<java.lang.Throwable> exceptionHandler();
    descriptor: ()Lio/vertx/core/Handler;
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 175
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.exceptionHandler:Lio/vertx/core/Handler;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
    Signature: ()Lio/vertx/core/Handler<Ljava/lang/Throwable;>;

  public synchronized io.vertx.core.http.HttpClientRequest exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 179
            aload 1 /* handler */
            ifnull 4
         1: .line 180
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         2: .line 181
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.exceptionHandler:Lio/vertx/core/Handler;
         3: .line 182
            goto 5
         4: .line 183
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.exceptionHandler:Lio/vertx/core/Handler;
         5: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    6     1  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.core.http.HttpClientRequest drainHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 190
            aload 1 /* handler */
            ifnull 2
         1: .line 191
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         2: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         3: .line 194
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.drainHandler:Lio/vertx/core/Handler;
         4: .line 195
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    5     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.core.http.HttpClientRequest continueHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 200
            aload 1 /* handler */
            ifnull 2
         1: .line 201
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         2: .line 203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.continueHandler:Lio/vertx/core/Handler;
         3: .line 204
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    4     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.Future<java.lang.Void> sendHead();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 209
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 210
            aload 0 /* this */
            aload 1 /* promise */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.sendHead:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            pop
         2: .line 211
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            1    3     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public io.vertx.core.http.HttpClientRequest sendHead(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.Handler headersHandler
         0: .line 216
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         1: .line 217
            aload 0 /* this */
            aconst_null
            iconst_0
            iconst_0
            aload 1 /* headersHandler */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.doWrite:(Lio/netty/buffer/ByteBuf;ZZLio/vertx/core/Handler;)V
         2: .line 218
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler headersHandler
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1  headersHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
                Name  Flags
      headersHandler  

  public io.vertx.core.Future<io.vertx.core.http.HttpClientResponse> connect();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 223
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.client:Lio/vertx/core/http/impl/HttpClientImpl;
            invokevirtual io.vertx.core.http.impl.HttpClientImpl.getOptions:()Lio/vertx/core/http/HttpClientOptions;
            invokevirtual io.vertx.core.http.HttpClientOptions.isPipelining:()Z
            ifeq 2
         1: .line 224
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            ldc "Cannot upgrade a pipe-lined request"
            invokeinterface io.vertx.core.impl.ContextInternal.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            areturn
         2: .line 226
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            iconst_0
            iconst_1
            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
                  io/vertx/core/http/impl/HttpClientRequestImpl.lambda$3(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.doWrite:(Lio/netty/buffer/ByteBuf;ZZLio/vertx/core/Handler;)V
         3: .line 227
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.response:()Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
    Signature: ()Lio/vertx/core/Future<Lio/vertx/core/http/HttpClientResponse;>;

  public void connect(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.http.HttpClientResponse>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 232
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.connect:()Lio/vertx/core/Future;
            astore 2 /* fut */
        start local 2 // io.vertx.core.Future fut
         1: .line 233
            aload 1 /* handler */
            ifnull 3
         2: .line 234
            aload 2 /* fut */
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         3: .line 236
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            return
        end local 2 // io.vertx.core.Future fut
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    4     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpClientResponse;>;>;
            1    4     2      fut  Lio/vertx/core/Future<Lio/vertx/core/http/HttpClientResponse;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpClientResponse;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.core.http.HttpClientRequest putHeader(java.lang.CharSequence, java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.CharSequence name
        start local 2 // java.lang.CharSequence value
         0: .line 240
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         1: .line 241
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/MultiMap;
            pop
         2: .line 242
            aload 0 /* this */
            areturn
        end local 2 // java.lang.CharSequence value
        end local 1 // java.lang.CharSequence name
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1   name  Ljava/lang/CharSequence;
            0    3     2  value  Ljava/lang/CharSequence;
    MethodParameters:
       Name  Flags
      name   
      value  

  public synchronized io.vertx.core.http.HttpClientRequest putHeader(java.lang.CharSequence, java.lang.Iterable<java.lang.CharSequence>);
    descriptor: (Ljava/lang/CharSequence;Ljava/lang/Iterable;)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.CharSequence name
        start local 2 // java.lang.Iterable values
         0: .line 247
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         1: .line 248
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* values */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/CharSequence;Ljava/lang/Iterable;)Lio/vertx/core/MultiMap;
            pop
         2: .line 249
            aload 0 /* this */
            areturn
        end local 2 // java.lang.Iterable values
        end local 1 // java.lang.CharSequence name
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    name  Ljava/lang/CharSequence;
            0    3     2  values  Ljava/lang/Iterable<Ljava/lang/CharSequence;>;
    Signature: (Ljava/lang/CharSequence;Ljava/lang/Iterable<Ljava/lang/CharSequence;>;)Lio/vertx/core/http/HttpClientRequest;
    MethodParameters:
        Name  Flags
      name    
      values  

  boolean reset(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.Throwable cause
         0: .line 254
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 255
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.reset:Ljava/lang/Throwable;
            ifnull 4
         2: .line 256
            aload 2
            monitorexit
         3: iconst_0
            ireturn
         4: .line 258
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cause */
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.reset:Ljava/lang/Throwable;
         5: .line 254
            aload 2
            monitorexit
         6: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 2
            monitorexit
         8: athrow
         9: .line 260
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            aload 1 /* cause */
            invokeinterface io.vertx.core.http.impl.HttpClientStream.reset:(Ljava/lang/Throwable;)V
        10: .line 261
            iconst_1
            ireturn
        end local 1 // java.lang.Throwable cause
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0   11     1  cause  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     3       7  any
           4     6       7  any
           7     8       7  any
    MethodParameters:
       Name  Flags
      cause  

  private void tryComplete();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 265
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.endPromise:Lio/vertx/core/Promise;
            invokeinterface io.vertx.core.Promise.tryComplete:()Z
            pop
         1: .line 266
            return
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;

  public synchronized io.vertx.core.http.HttpConnection connection();
    descriptor: ()Lio/vertx/core/http/HttpConnection;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 270
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            invokeinterface io.vertx.core.http.impl.HttpClientStream.connection:()Lio/vertx/core/http/impl/HttpClientConnection;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;

  public io.vertx.core.http.HttpClientRequest writeCustomFrame(int, int, io.vertx.core.buffer.Buffer);
    descriptor: (IILio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // int type
        start local 2 // int flags
        start local 3 // io.vertx.core.buffer.Buffer payload
         0: .line 275
            aload 0 /* this */
            dup
            astore 4
            monitorenter
         1: .line 276
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkEnded:()V
         2: .line 275
            aload 4
            monitorexit
         3: goto 6
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl int int io.vertx.core.buffer.Buffer io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack: java.lang.Throwable
         4: aload 4
            monitorexit
         5: athrow
         6: .line 278
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            iload 1 /* type */
            iload 2 /* flags */
            aload 3 /* payload */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            invokeinterface io.vertx.core.http.impl.HttpClientStream.writeFrame:(IILio/netty/buffer/ByteBuf;)V
         7: .line 279
            aload 0 /* this */
            areturn
        end local 3 // io.vertx.core.buffer.Buffer payload
        end local 2 // int flags
        end local 1 // int type
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    8     1     type  I
            0    8     2    flags  I
            0    8     3  payload  Lio/vertx/core/buffer/Buffer;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
         Name  Flags
      type     
      flags    
      payload  

  private void handleDrained(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.Void v
         0: .line 284
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 285
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.drainHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         2: .line 286
            aload 2 /* handler */
            ifnull 3
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.endFuture:Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.isComplete:()Z
            ifeq 5
         3: .line 287
      StackMap locals: io.vertx.core.Handler io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack:
            aload 3
            monitorexit
         4: return
         5: .line 284
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
         6: goto 9
        end local 2 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl java.lang.Void top io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack: java.lang.Throwable
         7: aload 3
            monitorexit
         8: athrow
        start local 2 // io.vertx.core.Handler handler
         9: .line 290
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl java.lang.Void io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            aload 2 /* handler */
            invokeinterface io.vertx.core.impl.ContextInternal.dispatch:(Lio/vertx/core/Handler;)V
        10: .line 291
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0   11     1        v  Ljava/lang/Void;
            2    7     2  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            9   11     2  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     4       7  any
           5     6       7  any
           7     8       7  any
    MethodParameters:
      Name  Flags
      v     

  private void handleNextRequest(io.vertx.core.http.HttpClientRequest, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.http.HttpClientResponse>>, );
    descriptor: (Lio/vertx/core/http/HttpClientRequest;Lio/vertx/core/Handler;J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.http.HttpClientRequest next
        start local 2 // io.vertx.core.Handler handler
        start local 3 // long timeoutMs
         0: .line 294
            aload 1 /* next */
            aload 2 /* handler */
            invokeinterface io.vertx.core.http.HttpClientRequest.response:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            pop
         1: .line 295
            aload 1 /* next */
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.exceptionHandler:()Lio/vertx/core/Handler;
            invokeinterface io.vertx.core.http.HttpClientRequest.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            pop
         2: .line 296
            aload 0 /* this */
            aconst_null
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            pop
         3: .line 297
            aload 1 /* next */
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.pushHandler:()Lio/vertx/core/Handler;
            invokeinterface io.vertx.core.http.HttpClientRequest.pushHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            pop
         4: .line 298
            aload 1 /* next */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.followRedirects:I
            iconst_1
            isub
            invokeinterface io.vertx.core.http.HttpClientRequest.setMaxRedirects:(I)Lio/vertx/core/http/HttpClientRequest;
            pop
         5: .line 299
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.headers:Lio/vertx/core/http/impl/headers/HeadersMultiMap;
            ifnull 7
         6: .line 300
            aload 1 /* next */
            invokeinterface io.vertx.core.http.HttpClientRequest.headers:()Lio/vertx/core/MultiMap;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.headers:Lio/vertx/core/http/impl/headers/HeadersMultiMap;
            invokeinterface io.vertx.core.MultiMap.addAll:(Lio/vertx/core/MultiMap;)Lio/vertx/core/MultiMap;
            pop
         7: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.endFuture:Lio/vertx/core/Future;
            lload 3 /* timeoutMs */
            aload 1 /* next */
            invokedynamic handle(JLio/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
                  io/vertx/core/http/impl/HttpClientRequestImpl.lambda$4(JLio/vertx/core/http/HttpClientRequest;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         8: .line 312
            return
        end local 3 // long timeoutMs
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.http.HttpClientRequest next
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    9     1       next  Lio/vertx/core/http/HttpClientRequest;
            0    9     2    handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpClientResponse;>;>;
            0    9     3  timeoutMs  J
    Signature: (Lio/vertx/core/http/HttpClientRequest;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpClientResponse;>;>;J)V
    MethodParameters:
           Name  Flags
      next       
      handler    
      timeoutMs  

  private void handleContinue(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.Void v
         0: .line 316
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 317
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.continueHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         2: .line 316
            aload 3
            monitorexit
         3: goto 6
        end local 2 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl java.lang.Void top io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack: java.lang.Throwable
         4: aload 3
            monitorexit
         5: athrow
        start local 2 // io.vertx.core.Handler handler
         6: .line 319
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl java.lang.Void io.vertx.core.Handler
      StackMap stack:
            aload 2 /* handler */
            ifnull 8
         7: .line 320
            aload 2 /* handler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         8: .line 322
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    9     1        v  Ljava/lang/Void;
            2    4     2  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            6    9     2  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
      Name  Flags
      v     

  void handleResponse(io.vertx.core.Promise<io.vertx.core.http.HttpClientResponse>, io.vertx.core.http.HttpClientResponse, );
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/http/HttpClientResponse;J)V
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.Promise promise
        start local 2 // io.vertx.core.http.HttpClientResponse resp
        start local 3 // long timeoutMs
         0: .line 325
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.reset:Ljava/lang/Throwable;
            ifnull 2
         1: .line 326
            return
         2: .line 328
      StackMap locals:
      StackMap stack:
            aload 2 /* resp */
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            istore 5 /* statusCode */
        start local 5 // int statusCode
         3: .line 329
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.followRedirects:I
            ifle 8
            iload 5 /* statusCode */
            sipush 300
            if_icmplt 8
            iload 5 /* statusCode */
            sipush 400
            if_icmpge 8
         4: .line 330
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.client:Lio/vertx/core/http/impl/HttpClientImpl;
            invokevirtual io.vertx.core.http.impl.HttpClientImpl.redirectHandler:()Ljava/util/function/Function;
            aload 2 /* resp */
            invokeinterface java.util.function.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.core.Future
            astore 6 /* next */
        start local 6 // io.vertx.core.Future next
         5: .line 331
            aload 6 /* next */
            ifnull 8
         6: .line 332
            aload 6 /* next */
            aload 0 /* this */
            aload 1 /* promise */
            lload 3 /* timeoutMs */
            invokedynamic handle(Lio/vertx/core/http/impl/HttpClientRequestImpl;Lio/vertx/core/Promise;J)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/http/impl/HttpClientRequestImpl.lambda$5(Lio/vertx/core/Promise;JLio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         7: .line 347
            return
        end local 6 // io.vertx.core.Future next
         8: .line 350
      StackMap locals: int
      StackMap stack:
            aload 1 /* promise */
            aload 2 /* resp */
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         9: .line 351
            return
        end local 5 // int statusCode
        end local 3 // long timeoutMs
        end local 2 // io.vertx.core.http.HttpClientResponse resp
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0   10     1     promise  Lio/vertx/core/Promise<Lio/vertx/core/http/HttpClientResponse;>;
            0   10     2        resp  Lio/vertx/core/http/HttpClientResponse;
            0   10     3   timeoutMs  J
            3   10     5  statusCode  I
            5    8     6        next  Lio/vertx/core/Future<Lio/vertx/core/http/RequestOptions;>;
    Signature: (Lio/vertx/core/Promise<Lio/vertx/core/http/HttpClientResponse;>;Lio/vertx/core/http/HttpClientResponse;J)V
    MethodParameters:
           Name  Flags
      promise    
      resp       
      timeoutMs  

  public io.vertx.core.Future<java.lang.Void> end(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.String chunk
         0: .line 355
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 356
            aload 0 /* this */
            aload 1 /* chunk */
            aload 2 /* promise */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.end:(Ljava/lang/String;Lio/vertx/core/Handler;)V
         2: .line 357
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    chunk  Ljava/lang/String;
            1    3     2  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
       Name  Flags
      chunk  

  public void end(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.String chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 362
            aload 0 /* this */
            aload 1 /* chunk */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.end:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
         1: .line 363
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    2     1    chunk  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      chunk    
      handler  

  public io.vertx.core.Future<java.lang.Void> end(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.String chunk
        start local 2 // java.lang.String enc
         0: .line 367
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 3 /* promise */
        start local 3 // io.vertx.core.Promise promise
         1: .line 368
            aload 0 /* this */
            aload 1 /* chunk */
            aload 2 /* enc */
            aload 3 /* promise */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.end:(Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
         2: .line 369
            aload 3 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 3 // io.vertx.core.Promise promise
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    chunk  Ljava/lang/String;
            0    3     2      enc  Ljava/lang/String;
            1    3     3  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
       Name  Flags
      chunk  
      enc    

  public void end(java.lang.String, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.String chunk
        start local 2 // java.lang.String enc
        start local 3 // io.vertx.core.Handler handler
         0: .line 374
            aload 2 /* enc */
            ldc "no null encoding accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 375
            aload 0 /* this */
            aload 1 /* chunk */
            aload 2 /* enc */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            aload 3 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.end:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
         2: .line 376
            return
        end local 3 // io.vertx.core.Handler handler
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    chunk  Ljava/lang/String;
            0    3     2      enc  Ljava/lang/String;
            0    3     3  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      chunk    
      enc      
      handler  

  public io.vertx.core.Future<java.lang.Void> end(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
         0: .line 380
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 381
            aload 0 /* this */
            aload 1 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            iconst_1
            aload 2 /* promise */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         2: .line 382
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    chunk  Lio/vertx/core/buffer/Buffer;
            1    3     2  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
       Name  Flags
      chunk  

  public void end(io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 387
            aload 0 /* this */
            aload 1 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            iconst_1
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         1: .line 388
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    2     1    chunk  Lio/vertx/core/buffer/Buffer;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      chunk    
      handler  

  public io.vertx.core.Future<java.lang.Void> end();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 392
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 393
            aload 0 /* this */
            aload 1 /* promise */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.end:(Lio/vertx/core/Handler;)V
         2: .line 394
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            1    3     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public void end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 399
            aload 0 /* this */
            aconst_null
            iconst_1
            aload 1 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         1: .line 400
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.Future<java.lang.Void> write(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
         0: .line 404
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 405
            aload 0 /* this */
            aload 1 /* chunk */
            aload 2 /* promise */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
         2: .line 406
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    chunk  Lio/vertx/core/buffer/Buffer;
            1    3     2  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
       Name  Flags
      chunk  

  public void write(io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 411
            aload 1 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            astore 3 /* buf */
        start local 3 // io.netty.buffer.ByteBuf buf
         1: .line 412
            aload 0 /* this */
            aload 3 /* buf */
            iconst_0
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         2: .line 413
            return
        end local 3 // io.netty.buffer.ByteBuf buf
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    chunk  Lio/vertx/core/buffer/Buffer;
            0    3     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            1    3     3      buf  Lio/netty/buffer/ByteBuf;
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      chunk    
      handler  

  public io.vertx.core.Future<java.lang.Void> write(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.String chunk
         0: .line 417
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 418
            aload 0 /* this */
            aload 1 /* chunk */
            aload 2 /* promise */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Ljava/lang/String;Lio/vertx/core/Handler;)V
         2: .line 419
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    chunk  Ljava/lang/String;
            1    3     2  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
       Name  Flags
      chunk  

  public void write(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.String chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 424
            aload 0 /* this */
            aload 1 /* chunk */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            iconst_0
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         1: .line 425
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    2     1    chunk  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      chunk    
      handler  

  public io.vertx.core.Future<java.lang.Void> write(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.String chunk
        start local 2 // java.lang.String enc
         0: .line 429
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 3 /* promise */
        start local 3 // io.vertx.core.Promise promise
         1: .line 430
            aload 0 /* this */
            aload 1 /* chunk */
            aload 2 /* enc */
            aload 3 /* promise */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
         2: .line 431
            aload 3 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 3 // io.vertx.core.Promise promise
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    chunk  Ljava/lang/String;
            0    3     2      enc  Ljava/lang/String;
            1    3     3  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
       Name  Flags
      chunk  
      enc    

  public void write(java.lang.String, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // java.lang.String chunk
        start local 2 // java.lang.String enc
        start local 3 // io.vertx.core.Handler handler
         0: .line 436
            aload 2 /* enc */
            ldc "no null encoding accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 437
            aload 0 /* this */
            aload 1 /* chunk */
            aload 2 /* enc */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            iconst_0
            aload 3 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         2: .line 438
            return
        end local 3 // io.vertx.core.Handler handler
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    3     1    chunk  Ljava/lang/String;
            0    3     2      enc  Ljava/lang/String;
            0    3     3  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      chunk    
      enc      
      handler  

  private boolean requiresContentLength();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 441
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.chunked:Z
            ifne 2
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.headers:Lio/vertx/core/http/impl/headers/HeadersMultiMap;
            ifnull 1
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.headers:Lio/vertx/core/http/impl/headers/HeadersMultiMap;
            getstatic io.vertx.core.http.HttpHeaders.CONTENT_LENGTH:Ljava/lang/CharSequence;
            invokevirtual io.vertx.core.http.impl.headers.HeadersMultiMap.contains:(Ljava/lang/CharSequence;)Z
            ifne 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.isConnect:Z
            ifne 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;

  private void write(io.netty.buffer.ByteBuf, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.netty.buffer.ByteBuf buff
        start local 2 // boolean end
        start local 3 // io.vertx.core.Handler completionHandler
         0: .line 445
            iload 2 /* end */
            ifeq 4
         1: .line 446
            aload 1 /* buff */
            ifnull 6
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.requiresContentLength:()Z
            ifeq 6
         2: .line 447
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.headers:()Lio/vertx/core/MultiMap;
            getstatic io.vertx.core.http.HttpHeaders.CONTENT_LENGTH:Ljava/lang/CharSequence;
            aload 1 /* buff */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/MultiMap;
            pop
         3: .line 449
            goto 6
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.requiresContentLength:()Z
            ifeq 6
         5: .line 450
            new java.lang.IllegalStateException
            dup
            ldc "You must set the Content-Length header to be the total size of the message body BEFORE sending any data if you are not using HTTP chunked encoding."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 453
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buff */
            iload 2 /* end */
            iconst_0
            aload 3 /* completionHandler */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.doWrite:(Lio/netty/buffer/ByteBuf;ZZLio/vertx/core/Handler;)V
         7: .line 454
            return
        end local 3 // io.vertx.core.Handler completionHandler
        end local 2 // boolean end
        end local 1 // io.netty.buffer.ByteBuf buff
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    8     0               this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    8     1               buff  Lio/netty/buffer/ByteBuf;
            0    8     2                end  Z
            0    8     3  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      buff               
      end                
      completionHandler  

  private void doWrite(io.netty.buffer.ByteBuf, boolean, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/netty/buffer/ByteBuf;ZZLio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=9, args_size=5
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.netty.buffer.ByteBuf buff
        start local 2 // boolean end
        start local 3 // boolean connect
        start local 4 // io.vertx.core.Handler completionHandler
         0: .line 458
            aload 0 /* this */
            dup
            astore 6
            monitorenter
         1: .line 459
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.ended:Z
            ifeq 5
         2: .line 460
            aload 4 /* completionHandler */
            new java.lang.IllegalStateException
            dup
            ldc "Request already complete"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 461
            aload 6
            monitorexit
         4: return
         5: .line 463
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl io.netty.buffer.ByteBuf int int io.vertx.core.Handler top io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.checkResponseHandler:()V
         6: .line 464
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.headWritten:Z
            ifne 11
         7: .line 465
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.headWritten:Z
         8: .line 466
            aload 0 /* this */
            iload 3 /* connect */
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.isConnect:Z
         9: .line 467
            iconst_1
            istore 5 /* writeHead */
        start local 5 // boolean writeHead
        10: .line 468
            goto 12
        end local 5 // boolean writeHead
        11: .line 469
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* writeHead */
        start local 5 // boolean writeHead
        12: .line 471
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl io.netty.buffer.ByteBuf int int io.vertx.core.Handler int io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack:
            aload 0 /* this */
            iload 2 /* end */
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.ended:Z
        13: .line 458
            aload 6
            monitorexit
        14: goto 17
        end local 5 // boolean writeHead
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl io.netty.buffer.ByteBuf int int io.vertx.core.Handler top io.vertx.core.http.impl.HttpClientRequestImpl
      StackMap stack: java.lang.Throwable
        15: aload 6
            monitorexit
        16: athrow
        start local 5 // boolean writeHead
        17: .line 474
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestImpl io.netty.buffer.ByteBuf int int io.vertx.core.Handler int
      StackMap stack:
            iload 5 /* writeHead */
            ifeq 23
        18: .line 475
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.getMethod:()Lio/vertx/core/http/HttpMethod;
            astore 6 /* method */
        start local 6 // io.vertx.core.http.HttpMethod method
        19: .line 476
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.getURI:()Ljava/lang/String;
            astore 7 /* uri */
        start local 7 // java.lang.String uri
        20: .line 477
            new io.vertx.core.http.impl.HttpRequestHead
            dup
            aload 6 /* method */
            aload 7 /* uri */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.headers:Lio/vertx/core/http/impl/headers/HeadersMultiMap;
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.authority:()Ljava/lang/String;
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.absoluteURI:()Ljava/lang/String;
            invokespecial io.vertx.core.http.impl.HttpRequestHead.<init>:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/MultiMap;Ljava/lang/String;Ljava/lang/String;)V
            astore 8 /* head */
        start local 8 // io.vertx.core.http.impl.HttpRequestHead head
        21: .line 478
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            aload 8 /* head */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.chunked:Z
            aload 1 /* buff */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.ended:Z
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.priority:Lio/vertx/core/http/StreamPriority;
            iload 3 /* connect */
            aload 4 /* completionHandler */
            invokeinterface io.vertx.core.http.impl.HttpClientStream.writeHead:(Lio/vertx/core/http/impl/HttpRequestHead;ZLio/netty/buffer/ByteBuf;ZLio/vertx/core/http/StreamPriority;ZLio/vertx/core/Handler;)V
        end local 8 // io.vertx.core.http.impl.HttpRequestHead head
        end local 7 // java.lang.String uri
        end local 6 // io.vertx.core.http.HttpMethod method
        22: .line 479
            goto 26
        23: .line 480
      StackMap locals:
      StackMap stack:
            aload 1 /* buff */
            ifnonnull 25
            iload 2 /* end */
            ifne 25
        24: .line 481
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        25: .line 483
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            aload 1 /* buff */
            iload 2 /* end */
            aload 4 /* completionHandler */
            invokeinterface io.vertx.core.http.impl.HttpClientStream.writeBuffer:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
        26: .line 485
      StackMap locals:
      StackMap stack:
            iload 2 /* end */
            ifeq 28
        27: .line 486
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.tryComplete:()V
        28: .line 488
      StackMap locals:
      StackMap stack:
            return
        end local 5 // boolean writeHead
        end local 4 // io.vertx.core.Handler completionHandler
        end local 3 // boolean connect
        end local 2 // boolean end
        end local 1 // io.netty.buffer.ByteBuf buff
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   29     0               this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0   29     1               buff  Lio/netty/buffer/ByteBuf;
            0   29     2                end  Z
            0   29     3            connect  Z
            0   29     4  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
           10   11     5          writeHead  Z
           12   15     5          writeHead  Z
           17   29     5          writeHead  Z
           19   22     6             method  Lio/vertx/core/http/HttpMethod;
           20   22     7                uri  Ljava/lang/String;
           21   22     8               head  Lio/vertx/core/http/impl/HttpRequestHead;
      Exception table:
        from    to  target  type
           1     4      15  any
           5    14      15  any
          15    16      15  any
    Signature: (Lio/netty/buffer/ByteBuf;ZZLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      buff               
      end                
      connect            
      completionHandler  

  private void checkEnded();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 491
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.ended:Z
            ifeq 2
         1: .line 492
            new java.lang.IllegalStateException
            dup
            ldc "Request already complete"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 494
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;

  private void checkResponseHandler();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 502
            return
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;

  public synchronized io.vertx.core.http.HttpClientRequest setStreamPriority(io.vertx.core.http.StreamPriority);
    descriptor: (Lio/vertx/core/http/StreamPriority;)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 1 // io.vertx.core.http.StreamPriority priority
         0: .line 506
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.headWritten:Z
            ifeq 3
         1: .line 507
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            aload 1 /* priority */
            invokeinterface io.vertx.core.http.impl.HttpClientStream.updatePriority:(Lio/vertx/core/http/StreamPriority;)V
         2: .line 508
            goto 4
         3: .line 509
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* priority */
            putfield io.vertx.core.http.impl.HttpClientRequestImpl.priority:Lio/vertx/core/http/StreamPriority;
         4: .line 511
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.http.StreamPriority priority
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    5     1  priority  Lio/vertx/core/http/StreamPriority;
    MethodParameters:
          Name  Flags
      priority  

  public synchronized io.vertx.core.http.StreamPriority getStreamPriority();
    descriptor: ()Lio/vertx/core/http/StreamPriority;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
         0: .line 516
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            invokeinterface io.vertx.core.http.impl.HttpClientStream.priority:()Lio/vertx/core/http/StreamPriority;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;

  public io.vertx.core.http.HttpClientRequest setChunked(boolean);
    descriptor: (Z)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.setChunked:(Z)Lio/vertx/core/http/impl/HttpClientRequestImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void write(java.lang.Object, io.vertx.core.Handler);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.buffer.Buffer
            aload 2
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.Future write(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/Future;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.buffer.Buffer
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.write:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.WriteStream setWriteQueueMaxSize(int);
    descriptor: (I)Lio/vertx/core/streams/WriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.setWriteQueueMaxSize:(I)Lio/vertx/core/http/HttpClientRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.StreamBase exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/StreamBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.WriteStream exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void end(java.lang.Object, io.vertx.core.Handler);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.buffer.Buffer
            aload 2
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.end:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.Future end(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/Future;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.buffer.Buffer
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.end:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.WriteStream drainHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$3(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult ar
         0: .line 226
            return
        end local 0 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private static void lambda$4(long, io.vertx.core.http.HttpClientRequest, io.vertx.core.AsyncResult);
    descriptor: (JLio/vertx/core/http/HttpClientRequest;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
        start local 3 // io.vertx.core.AsyncResult ar
         0: .line 303
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 5
         1: .line 304
            lload 0
            lconst_0
            lcmp
            ifle 3
         2: .line 305
            aload 2
            lload 0
            invokeinterface io.vertx.core.http.HttpClientRequest.setTimeout:(J)Lio/vertx/core/http/HttpClientRequest;
            pop
         3: .line 307
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface io.vertx.core.http.HttpClientRequest.end:()Lio/vertx/core/Future;
            pop
         4: .line 308
            goto 6
         5: .line 309
      StackMap locals:
      StackMap stack:
            aload 2
            lconst_0
            invokeinterface io.vertx.core.http.HttpClientRequest.reset:(J)Z
            pop
         6: .line 311
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     3    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$5(io.vertx.core.Promise, long, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;JLio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 4 // io.vertx.core.AsyncResult ar1
         0: .line 333
            aload 4 /* ar1 */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 5
         1: .line 334
            aload 4 /* ar1 */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.http.RequestOptions
            astore 5 /* options */
        start local 5 // io.vertx.core.http.RequestOptions options
         2: .line 335
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestImpl.client:Lio/vertx/core/http/impl/HttpClientImpl;
            aload 5 /* options */
            invokevirtual io.vertx.core.http.impl.HttpClientImpl.request:(Lio/vertx/core/http/RequestOptions;)Lio/vertx/core/Future;
            astore 6 /* f */
        start local 6 // io.vertx.core.Future f
         3: .line 336
            aload 6 /* f */
            aload 0 /* this */
            aload 1
            lload 2
            invokedynamic handle(Lio/vertx/core/http/impl/HttpClientRequestImpl;Lio/vertx/core/Promise;J)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/http/impl/HttpClientRequestImpl.lambda$6(Lio/vertx/core/Promise;JLio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        end local 6 // io.vertx.core.Future f
        end local 5 // io.vertx.core.http.RequestOptions options
         4: .line 343
            goto 6
         5: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* ar1 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.fail:(Ljava/lang/Throwable;)V
         6: .line 346
      StackMap locals:
      StackMap stack:
            return
        end local 4 // io.vertx.core.AsyncResult ar1
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    7     4      ar1  Lio/vertx/core/AsyncResult<Lio/vertx/core/http/RequestOptions;>;
            2    4     5  options  Lio/vertx/core/http/RequestOptions;
            3    4     6        f  Lio/vertx/core/Future<Lio/vertx/core/http/HttpClientRequest;>;

  private void lambda$6(io.vertx.core.Promise, long, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;JLio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
        start local 4 // io.vertx.core.AsyncResult ar2
         0: .line 337
            aload 4 /* ar2 */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 338
            aload 0 /* this */
            aload 4 /* ar2 */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.http.HttpClientRequest
            aload 1
            lload 2
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.handleNextRequest:(Lio/vertx/core/http/HttpClientRequest;Lio/vertx/core/Handler;J)V
         2: .line 339
            goto 4
         3: .line 340
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* ar2 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.http.impl.HttpClientRequestImpl.fail:(Ljava/lang/Throwable;)V
         4: .line 342
      StackMap locals:
      StackMap stack:
            return
        end local 4 // io.vertx.core.AsyncResult ar2
        end local 0 // io.vertx.core.http.impl.HttpClientRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/HttpClientRequestImpl;
            0    5     4   ar2  Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpClientRequest;>;
}
SourceFile: "HttpClientRequestImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles