public class io.vertx.ext.web.client.impl.HttpRequestImpl<T> implements io.vertx.ext.web.client.HttpRequest<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.web.client.impl.HttpRequestImpl
  super_class: java.lang.Object
{
  final io.vertx.ext.web.client.impl.WebClientInternal client;
    descriptor: Lio/vertx/ext/web/client/impl/WebClientInternal;
    flags: (0x0010) ACC_FINAL

  final io.vertx.ext.web.client.WebClientOptions options;
    descriptor: Lio/vertx/ext/web/client/WebClientOptions;
    flags: (0x0010) ACC_FINAL

  io.vertx.core.net.SocketAddress serverAddress;
    descriptor: Lio/vertx/core/net/SocketAddress;
    flags: (0x0000) 

  io.vertx.core.MultiMap params;
    descriptor: Lio/vertx/core/MultiMap;
    flags: (0x0000) 

  io.vertx.core.http.HttpMethod method;
    descriptor: Lio/vertx/core/http/HttpMethod;
    flags: (0x0000) 

  java.lang.String rawMethod;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  java.lang.String protocol;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  int port;
    descriptor: I
    flags: (0x0000) 

  java.lang.String host;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  java.lang.String virtualHost;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  java.lang.String uri;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  io.vertx.core.MultiMap headers;
    descriptor: Lio/vertx/core/MultiMap;
    flags: (0x0000) 

  long timeout;
    descriptor: J
    flags: (0x0000) 

  io.vertx.ext.web.codec.BodyCodec<T> codec;
    descriptor: Lio/vertx/ext/web/codec/BodyCodec;
    flags: (0x0000) 
    Signature: Lio/vertx/ext/web/codec/BodyCodec<TT;>;

  boolean followRedirects;
    descriptor: Z
    flags: (0x0000) 

  java.lang.Boolean ssl;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0000) 

  boolean multipartMixed;
    descriptor: Z
    flags: (0x0000) 

  public java.util.List<io.vertx.ext.web.client.predicate.ResponsePredicate> expectations;
    descriptor: Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: Ljava/util/List<Lio/vertx/ext/web/client/predicate/ResponsePredicate;>;

  void <init>(io.vertx.ext.web.client.impl.WebClientInternal, io.vertx.core.http.HttpMethod, io.vertx.core.net.SocketAddress, java.lang.Boolean, int, java.lang.String, java.lang.String, io.vertx.ext.web.codec.BodyCodec<T>, io.vertx.ext.web.client.WebClientOptions);
    descriptor: (Lio/vertx/ext/web/client/impl/WebClientInternal;Lio/vertx/core/http/HttpMethod;Lio/vertx/core/net/SocketAddress;Ljava/lang/Boolean;ILjava/lang/String;Ljava/lang/String;Lio/vertx/ext/web/codec/BodyCodec;Lio/vertx/ext/web/client/WebClientOptions;)V
    flags: (0x0000) 
    Code:
      stack=11, locals=10, args_size=10
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.ext.web.client.impl.WebClientInternal client
        start local 2 // io.vertx.core.http.HttpMethod method
        start local 3 // io.vertx.core.net.SocketAddress serverAddress
        start local 4 // java.lang.Boolean ssl
        start local 5 // int port
        start local 6 // java.lang.String host
        start local 7 // java.lang.String uri
        start local 8 // io.vertx.ext.web.codec.BodyCodec codec
        start local 9 // io.vertx.ext.web.client.WebClientOptions options
         0: .line 67
            aload 0 /* this */
            aload 1 /* client */
            aload 2 /* method */
            aload 3 /* serverAddress */
            aconst_null
            aload 4 /* ssl */
            iload 5 /* port */
            aload 6 /* host */
            aload 7 /* uri */
            aload 8 /* codec */
            aload 9 /* options */
            invokespecial io.vertx.ext.web.client.impl.HttpRequestImpl.<init>:(Lio/vertx/ext/web/client/impl/WebClientInternal;Lio/vertx/core/http/HttpMethod;Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Ljava/lang/Boolean;ILjava/lang/String;Ljava/lang/String;Lio/vertx/ext/web/codec/BodyCodec;Lio/vertx/ext/web/client/WebClientOptions;)V
         1: .line 68
            return
        end local 9 // io.vertx.ext.web.client.WebClientOptions options
        end local 8 // io.vertx.ext.web.codec.BodyCodec codec
        end local 7 // java.lang.String uri
        end local 6 // java.lang.String host
        end local 5 // int port
        end local 4 // java.lang.Boolean ssl
        end local 3 // io.vertx.core.net.SocketAddress serverAddress
        end local 2 // io.vertx.core.http.HttpMethod method
        end local 1 // io.vertx.ext.web.client.impl.WebClientInternal client
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1         client  Lio/vertx/ext/web/client/impl/WebClientInternal;
            0    2     2         method  Lio/vertx/core/http/HttpMethod;
            0    2     3  serverAddress  Lio/vertx/core/net/SocketAddress;
            0    2     4            ssl  Ljava/lang/Boolean;
            0    2     5           port  I
            0    2     6           host  Ljava/lang/String;
            0    2     7            uri  Ljava/lang/String;
            0    2     8          codec  Lio/vertx/ext/web/codec/BodyCodec<TT;>;
            0    2     9        options  Lio/vertx/ext/web/client/WebClientOptions;
    Signature: (Lio/vertx/ext/web/client/impl/WebClientInternal;Lio/vertx/core/http/HttpMethod;Lio/vertx/core/net/SocketAddress;Ljava/lang/Boolean;ILjava/lang/String;Ljava/lang/String;Lio/vertx/ext/web/codec/BodyCodec<TT;>;Lio/vertx/ext/web/client/WebClientOptions;)V
    MethodParameters:
               Name  Flags
      client         
      method         
      serverAddress  
      ssl            
      port           
      host           
      uri            
      codec          
      options        

  void <init>(io.vertx.ext.web.client.impl.WebClientInternal, io.vertx.core.http.HttpMethod, io.vertx.core.net.SocketAddress, java.lang.String, java.lang.Boolean, int, java.lang.String, java.lang.String, io.vertx.ext.web.codec.BodyCodec<T>, io.vertx.ext.web.client.WebClientOptions);
    descriptor: (Lio/vertx/ext/web/client/impl/WebClientInternal;Lio/vertx/core/http/HttpMethod;Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Ljava/lang/Boolean;ILjava/lang/String;Ljava/lang/String;Lio/vertx/ext/web/codec/BodyCodec;Lio/vertx/ext/web/client/WebClientOptions;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=11, args_size=11
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.ext.web.client.impl.WebClientInternal client
        start local 2 // io.vertx.core.http.HttpMethod method
        start local 3 // io.vertx.core.net.SocketAddress serverAddress
        start local 4 // java.lang.String protocol
        start local 5 // java.lang.Boolean ssl
        start local 6 // int port
        start local 7 // java.lang.String host
        start local 8 // java.lang.String uri
        start local 9 // io.vertx.ext.web.codec.BodyCodec codec
        start local 10 // io.vertx.ext.web.client.WebClientOptions options
         0: .line 70
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 0 /* this */
            ldc -1
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.timeout:J
         2: .line 62
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.multipartMixed:Z
         3: .line 72
            aload 0 /* this */
            aload 1 /* client */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.client:Lio/vertx/ext/web/client/impl/WebClientInternal;
         4: .line 73
            aload 0 /* this */
            aload 2 /* method */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.method:Lio/vertx/core/http/HttpMethod;
         5: .line 74
            aload 0 /* this */
            aload 4 /* protocol */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.protocol:Ljava/lang/String;
         6: .line 75
            aload 0 /* this */
            aload 9 /* codec */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.codec:Lio/vertx/ext/web/codec/BodyCodec;
         7: .line 76
            aload 0 /* this */
            iload 6 /* port */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.port:I
         8: .line 77
            aload 0 /* this */
            aload 7 /* host */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.host:Ljava/lang/String;
         9: .line 78
            aload 0 /* this */
            aload 8 /* uri */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.uri:Ljava/lang/String;
        10: .line 79
            aload 0 /* this */
            aload 5 /* ssl */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.ssl:Ljava/lang/Boolean;
        11: .line 80
            aload 0 /* this */
            aload 3 /* serverAddress */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.serverAddress:Lio/vertx/core/net/SocketAddress;
        12: .line 81
            aload 0 /* this */
            aload 10 /* options */
            invokevirtual io.vertx.ext.web.client.WebClientOptions.isFollowRedirects:()Z
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.followRedirects:Z
        13: .line 82
            aload 0 /* this */
            aload 10 /* options */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.options:Lio/vertx/ext/web/client/WebClientOptions;
        14: .line 83
            aload 10 /* options */
            invokevirtual io.vertx.ext.web.client.WebClientOptions.isUserAgentEnabled:()Z
            ifeq 16
        15: .line 84
            aload 0 /* this */
            new io.vertx.core.http.CaseInsensitiveHeaders
            dup
            invokespecial io.vertx.core.http.CaseInsensitiveHeaders.<init>:()V
            getstatic io.vertx.core.http.HttpHeaders.USER_AGENT:Ljava/lang/CharSequence;
            aload 10 /* options */
            invokevirtual io.vertx.ext.web.client.WebClientOptions.getUserAgent:()Ljava/lang/String;
            invokevirtual io.vertx.core.http.CaseInsensitiveHeaders.add:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/MultiMap;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.headers:Lio/vertx/core/MultiMap;
        16: .line 86
      StackMap locals: io.vertx.ext.web.client.impl.HttpRequestImpl io.vertx.ext.web.client.impl.WebClientInternal io.vertx.core.http.HttpMethod io.vertx.core.net.SocketAddress java.lang.String java.lang.Boolean int java.lang.String java.lang.String io.vertx.ext.web.codec.BodyCodec io.vertx.ext.web.client.WebClientOptions
      StackMap stack:
            return
        end local 10 // io.vertx.ext.web.client.WebClientOptions options
        end local 9 // io.vertx.ext.web.codec.BodyCodec codec
        end local 8 // java.lang.String uri
        end local 7 // java.lang.String host
        end local 6 // int port
        end local 5 // java.lang.Boolean ssl
        end local 4 // java.lang.String protocol
        end local 3 // io.vertx.core.net.SocketAddress serverAddress
        end local 2 // io.vertx.core.http.HttpMethod method
        end local 1 // io.vertx.ext.web.client.impl.WebClientInternal client
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0   17     1         client  Lio/vertx/ext/web/client/impl/WebClientInternal;
            0   17     2         method  Lio/vertx/core/http/HttpMethod;
            0   17     3  serverAddress  Lio/vertx/core/net/SocketAddress;
            0   17     4       protocol  Ljava/lang/String;
            0   17     5            ssl  Ljava/lang/Boolean;
            0   17     6           port  I
            0   17     7           host  Ljava/lang/String;
            0   17     8            uri  Ljava/lang/String;
            0   17     9          codec  Lio/vertx/ext/web/codec/BodyCodec<TT;>;
            0   17    10        options  Lio/vertx/ext/web/client/WebClientOptions;
    Signature: (Lio/vertx/ext/web/client/impl/WebClientInternal;Lio/vertx/core/http/HttpMethod;Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Ljava/lang/Boolean;ILjava/lang/String;Ljava/lang/String;Lio/vertx/ext/web/codec/BodyCodec<TT;>;Lio/vertx/ext/web/client/WebClientOptions;)V
    MethodParameters:
               Name  Flags
      client         
      method         
      serverAddress  
      protocol       
      ssl            
      port           
      host           
      uri            
      codec          
      options        

  private void <init>(io.vertx.ext.web.client.impl.HttpRequestImpl<T>);
    descriptor: (Lio/vertx/ext/web/client/impl/HttpRequestImpl;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.ext.web.client.impl.HttpRequestImpl other
         0: .line 88
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 0 /* this */
            ldc -1
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.timeout:J
         2: .line 62
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.multipartMixed:Z
         3: .line 89
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.client:Lio/vertx/ext/web/client/impl/WebClientInternal;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.client:Lio/vertx/ext/web/client/impl/WebClientInternal;
         4: .line 90
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.serverAddress:Lio/vertx/core/net/SocketAddress;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.serverAddress:Lio/vertx/core/net/SocketAddress;
         5: .line 91
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.options:Lio/vertx/ext/web/client/WebClientOptions;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.options:Lio/vertx/ext/web/client/WebClientOptions;
         6: .line 92
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.method:Lio/vertx/core/http/HttpMethod;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.method:Lio/vertx/core/http/HttpMethod;
         7: .line 93
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.protocol:Ljava/lang/String;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.protocol:Ljava/lang/String;
         8: .line 94
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.port:I
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.port:I
         9: .line 95
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.host:Ljava/lang/String;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.host:Ljava/lang/String;
        10: .line 96
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.timeout:J
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.timeout:J
        11: .line 97
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.uri:Ljava/lang/String;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.uri:Ljava/lang/String;
        12: .line 98
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.headers:Lio/vertx/core/MultiMap;
            ifnull 13
            new io.vertx.core.http.CaseInsensitiveHeaders
            dup
            invokespecial io.vertx.core.http.CaseInsensitiveHeaders.<init>:()V
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.headers:Lio/vertx/core/MultiMap;
            invokevirtual io.vertx.core.http.CaseInsensitiveHeaders.addAll:(Lio/vertx/core/MultiMap;)Lio/vertx/core/MultiMap;
            goto 14
      StackMap locals: io.vertx.ext.web.client.impl.HttpRequestImpl io.vertx.ext.web.client.impl.HttpRequestImpl
      StackMap stack: io.vertx.ext.web.client.impl.HttpRequestImpl
        13: aconst_null
      StackMap locals: io.vertx.ext.web.client.impl.HttpRequestImpl io.vertx.ext.web.client.impl.HttpRequestImpl
      StackMap stack: io.vertx.ext.web.client.impl.HttpRequestImpl io.vertx.core.MultiMap
        14: putfield io.vertx.ext.web.client.impl.HttpRequestImpl.headers:Lio/vertx/core/MultiMap;
        15: .line 99
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.params:Lio/vertx/core/MultiMap;
            ifnull 16
            new io.vertx.core.http.CaseInsensitiveHeaders
            dup
            invokespecial io.vertx.core.http.CaseInsensitiveHeaders.<init>:()V
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.params:Lio/vertx/core/MultiMap;
            invokevirtual io.vertx.core.http.CaseInsensitiveHeaders.addAll:(Lio/vertx/core/MultiMap;)Lio/vertx/core/MultiMap;
            goto 17
      StackMap locals:
      StackMap stack: io.vertx.ext.web.client.impl.HttpRequestImpl
        16: aconst_null
      StackMap locals: io.vertx.ext.web.client.impl.HttpRequestImpl io.vertx.ext.web.client.impl.HttpRequestImpl
      StackMap stack: io.vertx.ext.web.client.impl.HttpRequestImpl io.vertx.core.MultiMap
        17: putfield io.vertx.ext.web.client.impl.HttpRequestImpl.params:Lio/vertx/core/MultiMap;
        18: .line 100
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.codec:Lio/vertx/ext/web/codec/BodyCodec;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.codec:Lio/vertx/ext/web/codec/BodyCodec;
        19: .line 101
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.followRedirects:Z
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.followRedirects:Z
        20: .line 102
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.ssl:Ljava/lang/Boolean;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.ssl:Ljava/lang/Boolean;
        21: .line 103
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.multipartMixed:Z
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.multipartMixed:Z
        22: .line 104
            return
        end local 1 // io.vertx.ext.web.client.impl.HttpRequestImpl other
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   23     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0   23     1  other  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
    Signature: (Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;)V
    MethodParameters:
       Name  Flags
      other  

  public <U> io.vertx.ext.web.client.HttpRequest<U> as(io.vertx.ext.web.codec.BodyCodec<U>);
    descriptor: (Lio/vertx/ext/web/codec/BodyCodec;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.ext.web.codec.BodyCodec responseCodec
         0: .line 108
            aload 0 /* this */
            aload 1 /* responseCodec */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.codec:Lio/vertx/ext/web/codec/BodyCodec;
         1: .line 109
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.ext.web.codec.BodyCodec responseCodec
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  responseCodec  Lio/vertx/ext/web/codec/BodyCodec<TU;>;
    Signature: <U:Ljava/lang/Object;>(Lio/vertx/ext/web/codec/BodyCodec<TU;>;)Lio/vertx/ext/web/client/HttpRequest<TU;>;
    MethodParameters:
               Name  Flags
      responseCodec  

  public io.vertx.ext.web.client.HttpRequest<T> method(io.vertx.core.http.HttpMethod);
    descriptor: (Lio/vertx/core/http/HttpMethod;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.core.http.HttpMethod value
         0: .line 114
            aload 0 /* this */
            aload 1 /* value */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.method:Lio/vertx/core/http/HttpMethod;
         1: .line 115
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.http.HttpMethod value
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  value  Lio/vertx/core/http/HttpMethod;
    Signature: (Lio/vertx/core/http/HttpMethod;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.ext.web.client.HttpRequest<T> rawMethod(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String method
         0: .line 120
            aload 0 /* this */
            aload 1 /* method */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.rawMethod:Ljava/lang/String;
         1: .line 121
            aload 0 /* this */
            getstatic io.vertx.core.http.HttpMethod.OTHER:Lio/vertx/core/http/HttpMethod;
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.method:(Lio/vertx/core/http/HttpMethod;)Lio/vertx/ext/web/client/HttpRequest;
            pop
         2: .line 122
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String method
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    3     1  method  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
        Name  Flags
      method  

  public io.vertx.ext.web.client.HttpRequest<T> port(int);
    descriptor: (I)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // int value
         0: .line 127
            aload 0 /* this */
            iload 1 /* value */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.port:I
         1: .line 128
            aload 0 /* this */
            areturn
        end local 1 // int value
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  value  I
    Signature: (I)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.ext.web.client.HttpRequest<T> host(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String value
         0: .line 133
            aload 0 /* this */
            aload 1 /* value */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.host:Ljava/lang/String;
         1: .line 134
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String value
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  value  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.ext.web.client.HttpRequest<T> virtualHost(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String value
         0: .line 139
            aload 0 /* this */
            aload 1 /* value */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.virtualHost:Ljava/lang/String;
         1: .line 140
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String value
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  value  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.ext.web.client.HttpRequest<T> uri(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String value
         0: .line 145
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.params:Lio/vertx/core/MultiMap;
         1: .line 146
            aload 0 /* this */
            aload 1 /* value */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.uri:Ljava/lang/String;
         2: .line 147
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String value
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    3     1  value  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.ext.web.client.HttpRequest<T> putHeaders(io.vertx.core.MultiMap);
    descriptor: (Lio/vertx/core/MultiMap;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.core.MultiMap headers
         0: .line 152
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* headers */
            invokeinterface io.vertx.core.MultiMap.addAll:(Lio/vertx/core/MultiMap;)Lio/vertx/core/MultiMap;
            pop
         1: .line 153
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.MultiMap headers
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  headers  Lio/vertx/core/MultiMap;
    Signature: (Lio/vertx/core/MultiMap;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
         Name  Flags
      headers  

  public io.vertx.ext.web.client.HttpRequest<T> putHeader(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 158
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.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
         1: .line 159
            aload 0 /* this */
            areturn
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1   name  Ljava/lang/String;
            0    2     2  value  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
       Name  Flags
      name   
      value  

  public io.vertx.core.MultiMap headers();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
         0: .line 164
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.headers:Lio/vertx/core/MultiMap;
            ifnonnull 2
         1: .line 165
            aload 0 /* this */
            new io.vertx.core.http.CaseInsensitiveHeaders
            dup
            invokespecial io.vertx.core.http.CaseInsensitiveHeaders.<init>:()V
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.headers:Lio/vertx/core/MultiMap;
         2: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.headers:Lio/vertx/core/MultiMap;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;

  public io.vertx.ext.web.client.HttpRequest<T> basicAuthentication(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String id
        start local 2 // java.lang.String password
         0: .line 172
            aload 0 /* this */
            aload 1 /* id */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            aload 2 /* password */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.basicAuthentication:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/web/client/HttpRequest;
            areturn
        end local 2 // java.lang.String password
        end local 1 // java.lang.String id
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    1     1        id  Ljava/lang/String;
            0    1     2  password  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
          Name  Flags
      id        
      password  

  public io.vertx.ext.web.client.HttpRequest<T> basicAuthentication(io.vertx.core.buffer.Buffer, io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.core.buffer.Buffer id
        start local 2 // io.vertx.core.buffer.Buffer password
         0: .line 177
            invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
            aload 1 /* id */
            invokeinterface io.vertx.core.buffer.Buffer.appendBuffer:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
            ldc ":"
            invokeinterface io.vertx.core.buffer.Buffer.appendString:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            aload 2 /* password */
            invokeinterface io.vertx.core.buffer.Buffer.appendBuffer:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
            astore 3 /* buff */
        start local 3 // io.vertx.core.buffer.Buffer buff
         1: .line 178
            new java.lang.String
            dup
            invokestatic java.util.Base64.getEncoder:()Ljava/util/Base64$Encoder;
            aload 3 /* buff */
            invokeinterface io.vertx.core.buffer.Buffer.getBytes:()[B
            invokevirtual java.util.Base64$Encoder.encode:([B)[B
            invokespecial java.lang.String.<init>:([B)V
            astore 4 /* credentials */
        start local 4 // java.lang.String credentials
         2: .line 179
            aload 0 /* this */
            getstatic io.vertx.core.http.HttpHeaders.AUTHORIZATION:Ljava/lang/CharSequence;
            invokeinterface java.lang.CharSequence.toString:()Ljava/lang/String;
            new java.lang.StringBuilder
            dup
            ldc "Basic "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* credentials */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
            areturn
        end local 4 // java.lang.String credentials
        end local 3 // io.vertx.core.buffer.Buffer buff
        end local 2 // io.vertx.core.buffer.Buffer password
        end local 1 // io.vertx.core.buffer.Buffer id
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    3     1           id  Lio/vertx/core/buffer/Buffer;
            0    3     2     password  Lio/vertx/core/buffer/Buffer;
            1    3     3         buff  Lio/vertx/core/buffer/Buffer;
            2    3     4  credentials  Ljava/lang/String;
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
          Name  Flags
      id        
      password  

  public io.vertx.ext.web.client.HttpRequest<T> bearerTokenAuthentication(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String bearerToken
         0: .line 184
            aload 0 /* this */
            getstatic io.vertx.core.http.HttpHeaders.AUTHORIZATION:Ljava/lang/CharSequence;
            invokeinterface java.lang.CharSequence.toString:()Ljava/lang/String;
            new java.lang.StringBuilder
            dup
            ldc "Bearer "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* bearerToken */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
            areturn
        end local 1 // java.lang.String bearerToken
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    1     1  bearerToken  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
             Name  Flags
      bearerToken  

  public io.vertx.ext.web.client.HttpRequest<T> ssl(java.lang.Boolean);
    descriptor: (Ljava/lang/Boolean;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.Boolean value
         0: .line 189
            aload 0 /* this */
            aload 1 /* value */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.ssl:Ljava/lang/Boolean;
         1: .line 190
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Boolean value
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  value  Ljava/lang/Boolean;
    Signature: (Ljava/lang/Boolean;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.ext.web.client.HttpRequest<T> timeout(long);
    descriptor: (J)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // long value
         0: .line 195
            aload 0 /* this */
            lload 1 /* value */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.timeout:J
         1: .line 196
            aload 0 /* this */
            areturn
        end local 1 // long value
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  value  J
    Signature: (J)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.ext.web.client.HttpRequest<T> addQueryParam(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String paramName
        start local 2 // java.lang.String paramValue
         0: .line 201
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.queryParams:()Lio/vertx/core/MultiMap;
            aload 1 /* paramName */
            aload 2 /* paramValue */
            invokeinterface io.vertx.core.MultiMap.add:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         1: .line 202
            aload 0 /* this */
            areturn
        end local 2 // java.lang.String paramValue
        end local 1 // java.lang.String paramName
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1   paramName  Ljava/lang/String;
            0    2     2  paramValue  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
            Name  Flags
      paramName   
      paramValue  

  public io.vertx.ext.web.client.HttpRequest<T> setQueryParam(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String paramName
        start local 2 // java.lang.String paramValue
         0: .line 207
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.queryParams:()Lio/vertx/core/MultiMap;
            aload 1 /* paramName */
            aload 2 /* paramValue */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         1: .line 208
            aload 0 /* this */
            areturn
        end local 2 // java.lang.String paramValue
        end local 1 // java.lang.String paramName
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1   paramName  Ljava/lang/String;
            0    2     2  paramValue  Ljava/lang/String;
    Signature: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
            Name  Flags
      paramName   
      paramValue  

  public io.vertx.ext.web.client.HttpRequest<T> followRedirects(boolean);
    descriptor: (Z)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // boolean value
         0: .line 213
            aload 0 /* this */
            iload 1 /* value */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.followRedirects:Z
         1: .line 214
            aload 0 /* this */
            areturn
        end local 1 // boolean value
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  value  Z
    Signature: (Z)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.ext.web.client.HttpRequest<T> expect(io.vertx.ext.web.client.predicate.ResponsePredicate);
    descriptor: (Lio/vertx/ext/web/client/predicate/ResponsePredicate;)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.ext.web.client.predicate.ResponsePredicate expectation
         0: .line 219
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.expectations:Ljava/util/List;
            ifnonnull 2
         1: .line 220
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.expectations:Ljava/util/List;
         2: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.expectations:Ljava/util/List;
            aload 1 /* expectation */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 223
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.ext.web.client.predicate.ResponsePredicate expectation
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    4     1  expectation  Lio/vertx/ext/web/client/predicate/ResponsePredicate;
    Signature: (Lio/vertx/ext/web/client/predicate/ResponsePredicate;)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
             Name  Flags
      expectation  

  public io.vertx.core.MultiMap queryParams();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
         0: .line 228
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.params:Lio/vertx/core/MultiMap;
            ifnonnull 2
         1: .line 229
            aload 0 /* this */
            new io.vertx.core.http.CaseInsensitiveHeaders
            dup
            invokespecial io.vertx.core.http.CaseInsensitiveHeaders.<init>:()V
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.params:Lio/vertx/core/MultiMap;
         2: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.params:Lio/vertx/core/MultiMap;
            invokeinterface io.vertx.core.MultiMap.isEmpty:()Z
            ifeq 8
         3: .line 232
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.uri:Ljava/lang/String;
            bipush 63
            invokevirtual java.lang.String.indexOf:(I)I
            istore 1 /* idx */
        start local 1 // int idx
         4: .line 233
            iload 1 /* idx */
            iflt 8
         5: .line 234
            new io.netty.handler.codec.http.QueryStringDecoder
            dup
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.uri:Ljava/lang/String;
            invokespecial io.netty.handler.codec.http.QueryStringDecoder.<init>:(Ljava/lang/String;)V
            astore 2 /* dec */
        start local 2 // io.netty.handler.codec.http.QueryStringDecoder dec
         6: .line 235
            aload 2 /* dec */
            invokevirtual io.netty.handler.codec.http.QueryStringDecoder.parameters:()Ljava/util/Map;
            aload 0 /* this */
            invokedynamic accept(Lio/vertx/ext/web/client/impl/HttpRequestImpl;)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  io/vertx/ext/web/client/impl/HttpRequestImpl.lambda$0(Ljava/lang/String;Ljava/util/List;)V (7)
                  (Ljava/lang/String;Ljava/util/List;)V
            invokeinterface java.util.Map.forEach:(Ljava/util/function/BiConsumer;)V
         7: .line 236
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.uri:Ljava/lang/String;
            iconst_0
            iload 1 /* idx */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.uri:Ljava/lang/String;
        end local 2 // io.netty.handler.codec.http.QueryStringDecoder dec
        end local 1 // int idx
         8: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.params:Lio/vertx/core/MultiMap;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            4    8     1   idx  I
            6    8     2   dec  Lio/netty/handler/codec/http/QueryStringDecoder;

  public io.vertx.ext.web.client.HttpRequest<T> copy();
    descriptor: ()Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
         0: .line 244
            new io.vertx.ext.web.client.impl.HttpRequestImpl
            dup
            aload 0 /* this */
            invokespecial io.vertx.ext.web.client.impl.HttpRequestImpl.<init>:(Lio/vertx/ext/web/client/impl/HttpRequestImpl;)V
            areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
    Signature: ()Lio/vertx/ext/web/client/HttpRequest<TT;>;

  public io.vertx.ext.web.client.HttpRequest<T> multipartMixed(boolean);
    descriptor: (Z)Lio/vertx/ext/web/client/HttpRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // boolean allow
         0: .line 249
            aload 0 /* this */
            iload 1 /* allow */
            putfield io.vertx.ext.web.client.impl.HttpRequestImpl.multipartMixed:Z
         1: .line 250
            aload 0 /* this */
            areturn
        end local 1 // boolean allow
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  allow  Z
    Signature: (Z)Lio/vertx/ext/web/client/HttpRequest<TT;>;
    MethodParameters:
       Name  Flags
      allow  

  public void sendStream(io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.web.client.HttpResponse<T>>>);
    descriptor: (Lio/vertx/core/streams/ReadStream;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.core.streams.ReadStream body
        start local 2 // io.vertx.core.Handler handler
         0: .line 255
            aload 0 /* this */
            aconst_null
            aload 1 /* body */
            aload 2 /* handler */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 256
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.streams.ReadStream body
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1     body  Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;
    Signature: (Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;)V
    MethodParameters:
         Name  Flags
      body     
      handler  

  public void send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.web.client.HttpResponse<T>>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 260
            aload 0 /* this */
            aconst_null
            aconst_null
            aload 1 /* handler */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 261
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public void sendBuffer(io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.web.client.HttpResponse<T>>>);
    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.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.core.buffer.Buffer body
        start local 2 // io.vertx.core.Handler handler
         0: .line 265
            aload 0 /* this */
            aconst_null
            aload 1 /* body */
            aload 2 /* handler */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 266
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.buffer.Buffer body
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1     body  Lio/vertx/core/buffer/Buffer;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;)V
    MethodParameters:
         Name  Flags
      body     
      handler  

  public void sendJsonObject(io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.web.client.HttpResponse<T>>>);
    descriptor: (Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.core.json.JsonObject body
        start local 2 // io.vertx.core.Handler handler
         0: .line 270
            aload 0 /* this */
            ldc "application/json"
            aload 1 /* body */
            aload 2 /* handler */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 271
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.json.JsonObject body
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1     body  Lio/vertx/core/json/JsonObject;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;
    Signature: (Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;)V
    MethodParameters:
         Name  Flags
      body     
      handler  

  public void sendJson(, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.web.client.HttpResponse<T>>>);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.Object body
        start local 2 // io.vertx.core.Handler handler
         0: .line 275
            aload 0 /* this */
            ldc "application/json"
            aload 1 /* body */
            aload 2 /* handler */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 276
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Object body
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1     body  Ljava/lang/Object;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;
    Signature: (Ljava/lang/Object;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;)V
    MethodParameters:
         Name  Flags
      body     
      handler  

  public void sendForm(io.vertx.core.MultiMap, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.web.client.HttpResponse<T>>>);
    descriptor: (Lio/vertx/core/MultiMap;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.core.MultiMap body
        start local 2 // io.vertx.core.Handler handler
         0: .line 280
            aload 0 /* this */
            ldc "application/x-www-form-urlencoded"
            aload 1 /* body */
            aload 2 /* handler */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 281
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.MultiMap body
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1     body  Lio/vertx/core/MultiMap;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;
    Signature: (Lio/vertx/core/MultiMap;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;)V
    MethodParameters:
         Name  Flags
      body     
      handler  

  public void sendMultipartForm(io.vertx.ext.web.multipart.MultipartForm, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.web.client.HttpResponse<T>>>);
    descriptor: (Lio/vertx/ext/web/multipart/MultipartForm;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // io.vertx.ext.web.multipart.MultipartForm body
        start local 2 // io.vertx.core.Handler handler
         0: .line 285
            aload 0 /* this */
            ldc "multipart/form-data"
            aload 1 /* body */
            aload 2 /* handler */
            invokevirtual io.vertx.ext.web.client.impl.HttpRequestImpl.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 286
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.ext.web.multipart.MultipartForm body
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    2     1     body  Lio/vertx/ext/web/multipart/MultipartForm;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;
    Signature: (Lio/vertx/ext/web/multipart/MultipartForm;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;)V
    MethodParameters:
         Name  Flags
      body     
      handler  

  private void send(java.lang.String, , io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.web.client.HttpResponse<T>>>);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String contentType
        start local 2 // java.lang.Object body
        start local 3 // io.vertx.core.Handler handler
         0: .line 289
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.client:Lio/vertx/ext/web/client/impl/WebClientInternal;
            aload 3 /* handler */
            invokeinterface io.vertx.ext.web.client.impl.WebClientInternal.createContext:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/client/impl/HttpContext;
            astore 4 /* ctx */
        start local 4 // io.vertx.ext.web.client.impl.HttpContext ctx
         1: .line 290
            aload 4 /* ctx */
            aload 0 /* this */
            aload 1 /* contentType */
            aload 2 /* body */
            invokevirtual io.vertx.ext.web.client.impl.HttpContext.prepareRequest:(Lio/vertx/ext/web/client/HttpRequest;Ljava/lang/String;Ljava/lang/Object;)V
         2: .line 291
            return
        end local 4 // io.vertx.ext.web.client.impl.HttpContext ctx
        end local 3 // io.vertx.core.Handler handler
        end local 2 // java.lang.Object body
        end local 1 // java.lang.String contentType
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    3     1  contentType  Ljava/lang/String;
            0    3     2         body  Ljava/lang/Object;
            0    3     3      handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;
            1    3     4          ctx  Lio/vertx/ext/web/client/impl/HttpContext<TT;>;
    Signature: (Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/client/HttpResponse<TT;>;>;>;)V
    MethodParameters:
             Name  Flags
      contentType  
      body         
      handler      

  private void lambda$0(java.lang.String, java.util.List);
    descriptor: (Ljava/lang/String;Ljava/util/List;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
        start local 1 // java.lang.String name
        start local 2 // java.util.List value
         0: .line 235
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpRequestImpl.params:Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.add:(Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/MultiMap;
            return
        end local 2 // java.util.List value
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.client.impl.HttpRequestImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/ext/web/client/impl/HttpRequestImpl<TT;>;
            0    1     1   name  Ljava/lang/String;
            0    1     2  value  Ljava/util/List<Ljava/lang/String;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/ext/web/client/HttpRequest<TT;>;
SourceFile: "HttpRequestImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public Encoder = java.util.Base64$Encoder of java.util.Base64