public abstract class io.vertx.core.http.impl.HttpClientRequestBase implements io.vertx.core.http.HttpClientRequest
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.vertx.core.http.impl.HttpClientRequestBase
  super_class: java.lang.Object
{
  private static final io.vertx.core.logging.Logger log;
    descriptor: Lio/vertx/core/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  protected final io.vertx.core.http.impl.HttpClientImpl client;
    descriptor: Lio/vertx/core/http/impl/HttpClientImpl;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final io.vertx.core.http.HttpMethod method;
    descriptor: Lio/vertx/core/http/HttpMethod;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final java.lang.String uri;
    descriptor: Ljava/lang/String;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final java.lang.String path;
    descriptor: Ljava/lang/String;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final java.lang.String query;
    descriptor: Ljava/lang/String;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final java.lang.String host;
    descriptor: Ljava/lang/String;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final int port;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final io.vertx.core.net.SocketAddress server;
    descriptor: Lio/vertx/core/net/SocketAddress;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final boolean ssl;
    descriptor: Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  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 long currentTimeoutTimerId;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long currentTimeoutMs;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long lastDataReceived;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  protected java.lang.Throwable exceptionOccurred;
    descriptor: Ljava/lang/Throwable;
    flags: (0x0004) ACC_PROTECTED

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

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

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

  void <init>(io.vertx.core.http.impl.HttpClientImpl, 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;ZLio/vertx/core/http/HttpMethod;Lio/vertx/core/net/SocketAddress;Ljava/lang/String;ILjava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=8, args_size=8
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
        start local 1 // io.vertx.core.http.impl.HttpClientImpl client
        start local 2 // boolean ssl
        start local 3 // io.vertx.core.http.HttpMethod method
        start local 4 // io.vertx.core.net.SocketAddress server
        start local 5 // java.lang.String host
        start local 6 // int port
        start local 7 // java.lang.String uri
         0: .line 49
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            aload 0 /* this */
            ldc -1
            putfield io.vertx.core.http.impl.HttpClientRequestBase.currentTimeoutTimerId:J
         2: .line 50
            aload 0 /* this */
            aload 1 /* client */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.client:Lio/vertx/core/http/impl/HttpClientImpl;
         3: .line 51
            aload 0 /* this */
            aload 7 /* uri */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.uri:Ljava/lang/String;
         4: .line 52
            aload 0 /* this */
            aload 3 /* method */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.method:Lio/vertx/core/http/HttpMethod;
         5: .line 53
            aload 0 /* this */
            aload 4 /* server */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.server:Lio/vertx/core/net/SocketAddress;
         6: .line 54
            aload 0 /* this */
            aload 5 /* host */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.host:Ljava/lang/String;
         7: .line 55
            aload 0 /* this */
            iload 6 /* port */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.port:I
         8: .line 56
            aload 0 /* this */
            aload 7 /* uri */
            invokevirtual java.lang.String.length:()I
            ifle 9
            aload 7 /* uri */
            invokestatic io.vertx.core.http.impl.HttpUtils.parsePath:(Ljava/lang/String;)Ljava/lang/String;
            goto 10
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase io.vertx.core.http.impl.HttpClientImpl int io.vertx.core.http.HttpMethod io.vertx.core.net.SocketAddress java.lang.String int java.lang.String
      StackMap stack: io.vertx.core.http.impl.HttpClientRequestBase
         9: ldc ""
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase io.vertx.core.http.impl.HttpClientImpl int io.vertx.core.http.HttpMethod io.vertx.core.net.SocketAddress java.lang.String int java.lang.String
      StackMap stack: io.vertx.core.http.impl.HttpClientRequestBase java.lang.String
        10: putfield io.vertx.core.http.impl.HttpClientRequestBase.path:Ljava/lang/String;
        11: .line 57
            aload 0 /* this */
            aload 7 /* uri */
            invokestatic io.vertx.core.http.impl.HttpUtils.parseQuery:(Ljava/lang/String;)Ljava/lang/String;
            putfield io.vertx.core.http.impl.HttpClientRequestBase.query:Ljava/lang/String;
        12: .line 58
            aload 0 /* this */
            iload 2 /* ssl */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.ssl:Z
        13: .line 59
            return
        end local 7 // java.lang.String uri
        end local 6 // int port
        end local 5 // java.lang.String host
        end local 4 // io.vertx.core.net.SocketAddress server
        end local 3 // io.vertx.core.http.HttpMethod method
        end local 2 // boolean ssl
        end local 1 // io.vertx.core.http.impl.HttpClientImpl client
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            0   14     1  client  Lio/vertx/core/http/impl/HttpClientImpl;
            0   14     2     ssl  Z
            0   14     3  method  Lio/vertx/core/http/HttpMethod;
            0   14     4  server  Lio/vertx/core/net/SocketAddress;
            0   14     5    host  Ljava/lang/String;
            0   14     6    port  I
            0   14     7     uri  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      client  
      ssl     
      method  
      server  
      host    
      port    
      uri     

  protected void checkEnded();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 62
            return
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;

  protected java.lang.String hostHeader();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 65
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.port:I
            bipush 80
            if_icmpne 1
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.ssl:Z
            ifeq 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.port:I
            sipush 443
            if_icmpne 3
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.ssl:Z
            ifeq 3
         2: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.host:Ljava/lang/String;
            areturn
         3: .line 68
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.host:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            bipush 58
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.port:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;

  public java.lang.String absoluteURI();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 74
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.ssl:Z
            ifeq 1
            ldc "https://"
            goto 2
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack: new 0 new 0
         1: ldc "http://"
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack: new 0 new 0 java.lang.String
         2: invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.hostHeader:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.uri:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;

  public java.lang.String query();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 78
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.query:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;

  public java.lang.String path();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 82
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.path:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;

  public java.lang.String uri();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 86
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.uri:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;

  public java.lang.String host();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 90
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.server:Lio/vertx/core/net/SocketAddress;
            invokeinterface io.vertx.core.net.SocketAddress.host:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;

  public io.vertx.core.http.HttpMethod method();
    descriptor: ()Lio/vertx/core/http/HttpMethod;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 95
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.method:Lio/vertx/core/http/HttpMethod;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;

  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.HttpClientRequestBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 100
            aload 1 /* handler */
            ifnull 4
         1: .line 101
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.checkEnded:()V
         2: .line 102
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.exceptionHandler:Lio/vertx/core/Handler;
         3: .line 103
            goto 5
         4: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.HttpClientRequestBase.exceptionHandler:Lio/vertx/core/Handler;
         5: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            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  

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

  public synchronized io.vertx.core.http.HttpClientRequest setTimeout(long);
    descriptor: (J)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
        start local 1 // long timeoutMs
         0: .line 115
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.cancelTimeout:()J
            pop2
         1: .line 116
            aload 0 /* this */
            lload 1 /* timeoutMs */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.currentTimeoutMs:J
         2: .line 117
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.client:Lio/vertx/core/http/impl/HttpClientImpl;
            invokevirtual io.vertx.core.http.impl.HttpClientImpl.getVertx:()Lio/vertx/core/impl/VertxInternal;
            lload 1 /* timeoutMs */
            aload 0 /* this */
            lload 1 /* timeoutMs */
            invokedynamic handle(Lio/vertx/core/http/impl/HttpClientRequestBase;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/HttpClientRequestBase.lambda$0(JLjava/lang/Long;)V (7)
                  (Ljava/lang/Long;)V
            invokeinterface io.vertx.core.impl.VertxInternal.setTimer:(JLio/vertx/core/Handler;)J
            putfield io.vertx.core.http.impl.HttpClientRequestBase.currentTimeoutTimerId:J
         3: .line 118
            aload 0 /* this */
            areturn
        end local 1 // long timeoutMs
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            0    4     1  timeoutMs  J
    MethodParameters:
           Name  Flags
      timeoutMs  

  public void handleException(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
        start local 1 // java.lang.Throwable t
         0: .line 123
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 124
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.cancelTimeout:()J
            pop2
         2: .line 125
            aload 0 /* this */
            aload 1 /* t */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.exceptionOccurred:Ljava/lang/Throwable;
         3: .line 126
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.exceptionHandler:Lio/vertx/core/Handler;
            ifnull 6
         4: .line 127
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.exceptionHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         5: .line 128
            goto 7
        end local 2 // io.vertx.core.Handler handler
         6: .line 129
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase java.lang.Throwable top io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack:
            getstatic io.vertx.core.http.impl.HttpClientRequestBase.log:Lio/vertx/core/logging/Logger;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic handle(Lio/vertx/core/logging/Logger;)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/logging/Logger.error(Ljava/lang/Object;)V (5)
                  (Ljava/lang/Throwable;)V
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         7: .line 123
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase java.lang.Throwable io.vertx.core.Handler io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack:
            aload 3
            monitorexit
         8: goto 11
        end local 2 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase java.lang.Throwable top io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack: java.lang.Throwable
         9: aload 3
            monitorexit
        10: athrow
        start local 2 // io.vertx.core.Handler handler
        11: .line 132
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase java.lang.Throwable io.vertx.core.Handler
      StackMap stack:
            aload 2 /* handler */
            aload 1 /* t */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        12: .line 133
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Throwable t
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            0   13     1        t  Ljava/lang/Throwable;
            5    6     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
            7    9     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
           11   13     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
      Exception table:
        from    to  target  type
           1     8       9  any
           9    10       9  any
    MethodParameters:
      Name  Flags
      t     

  void handleResponse(io.vertx.core.http.HttpClientResponse);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
        start local 1 // io.vertx.core.http.HttpClientResponse resp
         0: .line 136
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 137
            aload 0 /* this */
            aload 1 /* resp */
            putfield io.vertx.core.http.impl.HttpClientRequestBase.response:Lio/vertx/core/http/HttpClientResponse;
         2: .line 136
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase io.vertx.core.http.HttpClientResponse io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.checkHandleResponse:()V
         7: .line 140
            return
        end local 1 // io.vertx.core.http.HttpClientResponse resp
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            0    8     1  resp  Lio/vertx/core/http/HttpClientResponse;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
      Name  Flags
      resp  

  private void checkHandleResponse();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 145
            aload 0 /* this */
            dup
            astore 4
            monitorenter
         1: .line 146
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.response:Lio/vertx/core/http/HttpClientResponse;
            ifnull 9
         2: .line 147
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.paused:Z
            ifeq 5
         3: .line 148
            aload 4
            monitorexit
         4: return
         5: .line 150
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase top top top io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.cancelTimeout:()J
            lstore 1 /* timeoutMS */
        start local 1 // long timeoutMS
         6: .line 151
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.response:Lio/vertx/core/http/HttpClientResponse;
            astore 3 /* resp */
        start local 3 // io.vertx.core.http.HttpClientResponse resp
         7: .line 152
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.HttpClientRequestBase.response:Lio/vertx/core/http/HttpClientResponse;
         8: .line 153
            goto 11
        end local 3 // io.vertx.core.http.HttpClientResponse resp
        end local 1 // long timeoutMS
         9: .line 154
      StackMap locals:
      StackMap stack:
            aload 4
            monitorexit
        10: return
        start local 1 // long timeoutMS
        start local 3 // io.vertx.core.http.HttpClientResponse resp
        11: .line 145
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase long io.vertx.core.http.HttpClientResponse io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack:
            aload 4
            monitorexit
        12: goto 15
        end local 3 // io.vertx.core.http.HttpClientResponse resp
        end local 1 // long timeoutMS
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase top top top io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack: java.lang.Throwable
        13: aload 4
            monitorexit
        14: athrow
        start local 1 // long timeoutMS
        start local 3 // io.vertx.core.http.HttpClientResponse resp
        15: .line 158
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase long io.vertx.core.http.HttpClientResponse
      StackMap stack:
            aload 0 /* this */
            aload 3 /* resp */
            lload 1 /* timeoutMS */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.handleResponse:(Lio/vertx/core/http/HttpClientResponse;J)V
        16: .line 159
            goto 19
      StackMap locals:
      StackMap stack: java.lang.Throwable
        17: astore 4 /* t */
        start local 4 // java.lang.Throwable t
        18: .line 160
            aload 0 /* this */
            aload 4 /* t */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.handleException:(Ljava/lang/Throwable;)V
        end local 4 // java.lang.Throwable t
        19: .line 162
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.http.HttpClientResponse resp
        end local 1 // long timeoutMS
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            6    9     1  timeoutMS  J
           11   13     1  timeoutMS  J
           15   20     1  timeoutMS  J
            7    9     3       resp  Lio/vertx/core/http/HttpClientResponse;
           11   13     3       resp  Lio/vertx/core/http/HttpClientResponse;
           15   20     3       resp  Lio/vertx/core/http/HttpClientResponse;
           18   19     4          t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     4      13  any
           5    10      13  any
          11    12      13  any
          13    14      13  any
          15    16      17  Class java.lang.Throwable

  abstract void handleResponse(io.vertx.core.http.HttpClientResponse, long);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;J)V
    flags: (0x0400) ACC_ABSTRACT
    MethodParameters:
           Name  Flags
      resp       
      timeoutMs  

  private synchronized long cancelTimeout();
    descriptor: ()J
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 168
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.currentTimeoutTimerId:J
            dup2
            lstore 1 /* ret */
        start local 1 // long ret
         1: ldc -1
            lcmp
            ifeq 6
         2: .line 169
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.client:Lio/vertx/core/http/impl/HttpClientImpl;
            invokevirtual io.vertx.core.http.impl.HttpClientImpl.getVertx:()Lio/vertx/core/impl/VertxInternal;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.currentTimeoutTimerId:J
            invokeinterface io.vertx.core.impl.VertxInternal.cancelTimer:(J)Z
            pop
         3: .line 170
            aload 0 /* this */
            ldc -1
            putfield io.vertx.core.http.impl.HttpClientRequestBase.currentTimeoutTimerId:J
         4: .line 171
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.currentTimeoutMs:J
            lstore 1 /* ret */
         5: .line 172
            aload 0 /* this */
            lconst_0
            putfield io.vertx.core.http.impl.HttpClientRequestBase.currentTimeoutMs:J
         6: .line 174
      StackMap locals: long
      StackMap stack:
            lload 1 /* ret */
            lreturn
        end local 1 // long ret
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            1    7     1   ret  J

  private void handleTimeout(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
        start local 1 // long timeoutMs
         0: .line 178
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 179
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.lastDataReceived:J
            lconst_0
            lcmp
            ifle 9
         2: .line 180
            invokestatic java.lang.System.currentTimeMillis:()J
            lstore 4 /* now */
        start local 4 // long now
         3: .line 181
            lload 4 /* now */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.lastDataReceived:J
            lsub
            lstore 6 /* timeSinceLastData */
        start local 6 // long timeSinceLastData
         4: .line 182
            lload 6 /* timeSinceLastData */
            lload 1 /* timeoutMs */
            lcmp
            ifge 9
         5: .line 184
            aload 0 /* this */
            lconst_0
            putfield io.vertx.core.http.impl.HttpClientRequestBase.lastDataReceived:J
         6: .line 185
            aload 0 /* this */
            lload 1 /* timeoutMs */
            lload 6 /* timeSinceLastData */
            lsub
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.setTimeout:(J)Lio/vertx/core/http/HttpClientRequest;
            pop
         7: .line 186
            aload 3
            monitorexit
         8: return
        end local 6 // long timeSinceLastData
        end local 4 // long now
         9: .line 178
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack:
            aload 3
            monitorexit
        10: goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: aload 3
            monitorexit
        12: athrow
        13: .line 190
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "The timeout period of "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 1 /* timeoutMs */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc "ms has been exceeded while executing "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.method:Lio/vertx/core/http/HttpMethod;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.uri:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " for server "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.server:Lio/vertx/core/net/SocketAddress;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 3 /* msg */
        start local 3 // java.lang.String msg
        14: .line 191
            aload 0 /* this */
            new io.vertx.core.http.impl.NoStackTraceTimeoutException
            dup
            aload 3 /* msg */
            invokespecial io.vertx.core.http.impl.NoStackTraceTimeoutException.<init>:(Ljava/lang/String;)V
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.reset:(Ljava/lang/Throwable;)Z
            pop
        15: .line 192
            return
        end local 3 // java.lang.String msg
        end local 1 // long timeoutMs
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   16     0               this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            0   16     1          timeoutMs  J
            3    9     4                now  J
            4    9     6  timeSinceLastData  J
           14   16     3                msg  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     8      11  any
           9    10      11  any
          11    12      11  any
    MethodParameters:
           Name  Flags
      timeoutMs  

  synchronized void dataReceived();
    descriptor: ()V
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 195
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.currentTimeoutTimerId:J
            ldc -1
            lcmp
            ifeq 2
         1: .line 196
            aload 0 /* this */
            invokestatic java.lang.System.currentTimeMillis:()J
            putfield io.vertx.core.http.impl.HttpClientRequestBase.lastDataReceived:J
         2: .line 198
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;

  public boolean reset(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
        start local 1 // long code
         0: .line 202
            aload 0 /* this */
            new io.vertx.core.http.StreamResetException
            dup
            lload 1 /* code */
            invokespecial io.vertx.core.http.StreamResetException.<init>:(J)V
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.reset:(Ljava/lang/Throwable;)Z
            ireturn
        end local 1 // long code
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            0    1     1  code  J
    MethodParameters:
      Name  Flags
      code  

  abstract boolean reset(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Z
    flags: (0x0400) ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      cause  

  public io.vertx.core.http.HttpClientRequest pause();
    descriptor: ()Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 209
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.HttpClientRequestBase.paused:Z
         1: .line 210
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;

  public io.vertx.core.http.HttpClientRequest resume();
    descriptor: ()Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
         0: .line 215
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 216
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientRequestBase.paused:Z
            ifeq 4
         2: .line 217
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.http.impl.HttpClientRequestBase.paused:Z
         3: .line 218
            goto 6
         4: .line 219
      StackMap locals: io.vertx.core.http.impl.HttpClientRequestBase
      StackMap stack:
            aload 0 /* this */
            aload 1
            monitorexit
         5: areturn
         6: .line 215
      StackMap locals:
      StackMap stack:
            aload 1
            monitorexit
         7: goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: aload 1
            monitorexit
         9: athrow
        10: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.checkHandleResponse:()V
        11: .line 223
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;
      Exception table:
        from    to  target  type
           1     5       8  any
           6     7       8  any
           8     9       8  any

  public synchronized io.vertx.core.http.HttpClientRequest fetch(long);
    descriptor: (J)Lio/vertx/core/http/HttpClientRequest;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
        start local 1 // long amount
         0: .line 228
            lload 1 /* amount */
            lconst_0
            lcmp
            ifge 2
         1: .line 229
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 231
      StackMap locals:
      StackMap stack:
            lload 1 /* amount */
            lconst_0
            lcmp
            ifle 4
         3: .line 232
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.resume:()Lio/vertx/core/http/HttpClientRequest;
            pop
         4: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // long amount
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            0    5     1  amount  J
    MethodParameters:
        Name  Flags
      amount  

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

  public io.vertx.core.streams.ReadStream resume();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.resume:()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.HttpClientRequestBase.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.HttpClientRequestBase.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    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.HttpClientRequestBase.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream fetch(long);
    descriptor: (J)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.fetch:(J)Lio/vertx/core/http/HttpClientRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void lambda$0(long, java.lang.Long);
    descriptor: (JLjava/lang/Long;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
        start local 3 // java.lang.Long id
         0: .line 117
            aload 0 /* this */
            lload 1
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.handleTimeout:(J)V
            return
        end local 3 // java.lang.Long id
        end local 0 // io.vertx.core.http.impl.HttpClientRequestBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientRequestBase;
            0    1     3    id  Ljava/lang/Long;
}
SourceFile: "HttpClientRequestBase.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles