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

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

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

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

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

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

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

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

  private io.vertx.core.Handler<io.vertx.core.http.HttpFrame> customFrameHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Lio/vertx/core/http/HttpFrame;>;

  private io.vertx.core.Handler<io.vertx.core.http.StreamPriority> priorityHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Lio/vertx/core/http/StreamPriority;>;

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

  private io.vertx.core.MultiMap trailers;
    descriptor: Lio/vertx/core/MultiMap;
    flags: (0x0002) ACC_PRIVATE

  private java.util.List<java.lang.String> cookies;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Ljava/lang/String;>;

  private io.vertx.core.net.NetSocket netSocket;
    descriptor: Lio/vertx/core/net/NetSocket;
    flags: (0x0002) ACC_PRIVATE

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

  void <init>(io.vertx.core.http.impl.HttpClientRequestBase, io.vertx.core.http.HttpVersion, io.vertx.core.http.impl.HttpClientStream, int, java.lang.String, io.vertx.core.MultiMap);
    descriptor: (Lio/vertx/core/http/impl/HttpClientRequestBase;Lio/vertx/core/http/HttpVersion;Lio/vertx/core/http/impl/HttpClientStream;ILjava/lang/String;Lio/vertx/core/MultiMap;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=7, args_size=7
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // io.vertx.core.http.impl.HttpClientRequestBase request
        start local 2 // io.vertx.core.http.HttpVersion version
        start local 3 // io.vertx.core.http.impl.HttpClientStream stream
        start local 4 // int statusCode
        start local 5 // java.lang.String statusMessage
        start local 6 // io.vertx.core.MultiMap headers
         0: .line 59
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 60
            aload 0 /* this */
            aload 2 /* version */
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.version:Lio/vertx/core/http/HttpVersion;
         2: .line 61
            aload 0 /* this */
            iload 4 /* statusCode */
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.statusCode:I
         3: .line 62
            aload 0 /* this */
            aload 5 /* statusMessage */
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.statusMessage:Ljava/lang/String;
         4: .line 63
            aload 0 /* this */
            aload 1 /* request */
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.request:Lio/vertx/core/http/impl/HttpClientRequestBase;
         5: .line 64
            aload 0 /* this */
            aload 3 /* stream */
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
         6: .line 65
            aload 0 /* this */
            aload 3 /* stream */
            invokeinterface io.vertx.core.http.impl.HttpClientStream.connection:()Lio/vertx/core/http/impl/HttpClientConnection;
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
         7: .line 66
            aload 0 /* this */
            aload 6 /* headers */
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.headers:Lio/vertx/core/MultiMap;
         8: .line 67
            return
        end local 6 // io.vertx.core.MultiMap headers
        end local 5 // java.lang.String statusMessage
        end local 4 // int statusCode
        end local 3 // io.vertx.core.http.impl.HttpClientStream stream
        end local 2 // io.vertx.core.http.HttpVersion version
        end local 1 // io.vertx.core.http.impl.HttpClientRequestBase request
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    9     0           this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0    9     1        request  Lio/vertx/core/http/impl/HttpClientRequestBase;
            0    9     2        version  Lio/vertx/core/http/HttpVersion;
            0    9     3         stream  Lio/vertx/core/http/impl/HttpClientStream;
            0    9     4     statusCode  I
            0    9     5  statusMessage  Ljava/lang/String;
            0    9     6        headers  Lio/vertx/core/MultiMap;
    MethodParameters:
               Name  Flags
      request        
      version        
      stream         
      statusCode     
      statusMessage  
      headers        

  private io.vertx.core.http.impl.HttpEventHandler eventHandler(boolean);
    descriptor: (Z)Lio/vertx/core/http/impl/HttpEventHandler;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // boolean create
         0: .line 70
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:Lio/vertx/core/http/impl/HttpEventHandler;
            ifnonnull 2
            iload 1 /* create */
            ifeq 2
         1: .line 71
            aload 0 /* this */
            new io.vertx.core.http.impl.HttpEventHandler
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.request:Lio/vertx/core/http/impl/HttpClientRequestBase;
            getfield io.vertx.core.http.impl.HttpClientRequestBase.context:Lio/vertx/core/impl/ContextInternal;
            invokespecial io.vertx.core.http.impl.HttpEventHandler.<init>:(Lio/vertx/core/impl/ContextInternal;)V
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:Lio/vertx/core/http/impl/HttpEventHandler;
         2: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:Lio/vertx/core/http/impl/HttpEventHandler;
            areturn
        end local 1 // boolean create
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0    3     1  create  Z
    MethodParameters:
        Name  Flags
      create  

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

  public io.vertx.core.net.NetSocket netSocket();
    descriptor: ()Lio/vertx/core/net/NetSocket;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
         0: .line 83
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.netSocket:Lio/vertx/core/net/NetSocket;
            ifnonnull 2
         1: .line 84
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            checkcast io.vertx.core.net.impl.ConnectionBase
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.request:Lio/vertx/core/http/impl/HttpClientRequestBase;
            getfield io.vertx.core.http.impl.HttpClientRequestBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.request:Lio/vertx/core/http/impl/HttpClientRequestBase;
            invokestatic io.vertx.core.http.impl.HttpNetSocket.netSocket:(Lio/vertx/core/net/impl/ConnectionBase;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/streams/ReadStream;Lio/vertx/core/streams/WriteStream;)Lio/vertx/core/http/impl/HttpNetSocket;
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.netSocket:Lio/vertx/core/net/NetSocket;
         2: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.netSocket:Lio/vertx/core/net/NetSocket;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/HttpClientResponseImpl;

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

  public int statusCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
         0: .line 96
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.statusCode:I
            ireturn
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientResponseImpl;

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

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

  public java.lang.String getHeader(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // java.lang.String headerName
         0: .line 111
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.headers:Lio/vertx/core/MultiMap;
            aload 1 /* headerName */
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String headerName
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0    1     1  headerName  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      headerName  

  public java.lang.String getHeader(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // java.lang.CharSequence headerName
         0: .line 116
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.headers:Lio/vertx/core/MultiMap;
            aload 1 /* headerName */
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/CharSequence;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.CharSequence headerName
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0    1     1  headerName  Ljava/lang/CharSequence;
    MethodParameters:
            Name  Flags
      headerName  

  public io.vertx.core.MultiMap trailers();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
         0: .line 121
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 1
            monitorenter
         1: .line 122
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.trailers:Lio/vertx/core/MultiMap;
            ifnonnull 3
         2: .line 123
            aload 0 /* this */
            new io.vertx.core.http.impl.headers.HeadersAdaptor
            dup
            new io.netty.handler.codec.http.DefaultHttpHeaders
            dup
            invokespecial io.netty.handler.codec.http.DefaultHttpHeaders.<init>:()V
            invokespecial io.vertx.core.http.impl.headers.HeadersAdaptor.<init>:(Lio/netty/handler/codec/http/HttpHeaders;)V
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.trailers:Lio/vertx/core/MultiMap;
         3: .line 125
      StackMap locals: io.vertx.core.http.HttpConnection
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.trailers:Lio/vertx/core/MultiMap;
            aload 1
            monitorexit
         4: areturn
         5: .line 121
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         6: athrow
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  public java.lang.String getTrailer(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // java.lang.String trailerName
         0: .line 131
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.trailers:Lio/vertx/core/MultiMap;
            ifnull 1
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.trailers:Lio/vertx/core/MultiMap;
            aload 1 /* trailerName */
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/String;)Ljava/lang/String;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 1 // java.lang.String trailerName
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0    3     1  trailerName  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      trailerName  

  public java.util.List<java.lang.String> cookies();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
         0: .line 136
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 1
            monitorenter
         1: .line 137
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.cookies:Ljava/util/List;
            ifnonnull 6
         2: .line 138
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.cookies:Ljava/util/List;
         3: .line 139
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.cookies:Ljava/util/List;
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.headers:()Lio/vertx/core/MultiMap;
            getstatic io.vertx.core.http.HttpHeaders.SET_COOKIE:Ljava/lang/CharSequence;
            invokeinterface io.vertx.core.MultiMap.getAll:(Ljava/lang/CharSequence;)Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         4: .line 140
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.trailers:Lio/vertx/core/MultiMap;
            ifnull 6
         5: .line 141
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.cookies:Ljava/util/List;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.trailers:Lio/vertx/core/MultiMap;
            getstatic io.vertx.core.http.HttpHeaders.SET_COOKIE:Ljava/lang/CharSequence;
            invokeinterface io.vertx.core.MultiMap.getAll:(Ljava/lang/CharSequence;)Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         6: .line 144
      StackMap locals: io.vertx.core.http.HttpConnection
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.cookies:Ljava/util/List;
            aload 1
            monitorexit
         7: areturn
         8: .line 136
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         9: athrow
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
      Exception table:
        from    to  target  type
           1     7       8  any
           8     9       8  any
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  private void checkEnded();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
         0: .line 149
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.trailers:Lio/vertx/core/MultiMap;
            ifnull 2
         1: .line 150
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         2: .line 152
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/HttpClientResponseImpl;

  public io.vertx.core.http.HttpClientResponse handler(io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 156
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 2
            monitorenter
         1: .line 157
            aload 1 /* handler */
            ifnull 3
         2: .line 158
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.checkEnded:()V
         3: .line 160
      StackMap locals: io.vertx.core.http.HttpConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            ifnull 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack: io.vertx.core.http.impl.HttpClientResponseImpl
         4: iconst_0
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.Handler io.vertx.core.http.HttpConnection
      StackMap stack: io.vertx.core.http.impl.HttpClientResponseImpl int
         5: invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:(Z)Lio/vertx/core/http/impl/HttpEventHandler;
            astore 3 /* eventHandler */
        start local 3 // io.vertx.core.http.impl.HttpEventHandler eventHandler
         6: .line 161
            aload 3 /* eventHandler */
            ifnull 8
         7: .line 162
            aload 3 /* eventHandler */
            aload 1 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpEventHandler.chunkHandler:(Lio/vertx/core/Handler;)V
         8: .line 164
      StackMap locals: io.vertx.core.http.impl.HttpEventHandler
      StackMap stack:
            aload 0 /* this */
            aload 2
            monitorexit
         9: areturn
        end local 3 // io.vertx.core.http.impl.HttpEventHandler eventHandler
        10: .line 156
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.Handler io.vertx.core.http.HttpConnection
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        11: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0   12     1       handler  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
            6   10     3  eventHandler  Lio/vertx/core/http/impl/HttpEventHandler;
      Exception table:
        from    to  target  type
           1     9      10  any
          10    11      10  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/core/http/HttpClientResponse;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.HttpClientResponse endHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 170
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 2
            monitorenter
         1: .line 171
            aload 1 /* handler */
            ifnull 3
         2: .line 172
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.checkEnded:()V
         3: .line 174
      StackMap locals: io.vertx.core.http.HttpConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            ifnull 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack: io.vertx.core.http.impl.HttpClientResponseImpl
         4: iconst_0
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.Handler io.vertx.core.http.HttpConnection
      StackMap stack: io.vertx.core.http.impl.HttpClientResponseImpl int
         5: invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:(Z)Lio/vertx/core/http/impl/HttpEventHandler;
            astore 3 /* eventHandler */
        start local 3 // io.vertx.core.http.impl.HttpEventHandler eventHandler
         6: .line 175
            aload 3 /* eventHandler */
            ifnull 8
         7: .line 176
            aload 3 /* eventHandler */
            aload 1 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpEventHandler.endHandler:(Lio/vertx/core/Handler;)V
         8: .line 178
      StackMap locals: io.vertx.core.http.impl.HttpEventHandler
      StackMap stack:
            aload 0 /* this */
            aload 2
            monitorexit
         9: areturn
        end local 3 // io.vertx.core.http.impl.HttpEventHandler eventHandler
        10: .line 170
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.Handler io.vertx.core.http.HttpConnection
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        11: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0   12     1       handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            6   10     3  eventHandler  Lio/vertx/core/http/impl/HttpEventHandler;
      Exception table:
        from    to  target  type
           1     9      10  any
          10    11      10  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/http/HttpClientResponse;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.HttpClientResponse exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 184
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 2
            monitorenter
         1: .line 185
            aload 1 /* handler */
            ifnull 3
         2: .line 186
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.checkEnded:()V
         3: .line 188
      StackMap locals: io.vertx.core.http.HttpConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            ifnull 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack: io.vertx.core.http.impl.HttpClientResponseImpl
         4: iconst_0
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.Handler io.vertx.core.http.HttpConnection
      StackMap stack: io.vertx.core.http.impl.HttpClientResponseImpl int
         5: invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:(Z)Lio/vertx/core/http/impl/HttpEventHandler;
            astore 3 /* eventHandler */
        start local 3 // io.vertx.core.http.impl.HttpEventHandler eventHandler
         6: .line 189
            aload 3 /* eventHandler */
            ifnull 8
         7: .line 190
            aload 3 /* eventHandler */
            aload 1 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpEventHandler.exceptionHandler:(Lio/vertx/core/Handler;)V
         8: .line 192
      StackMap locals: io.vertx.core.http.impl.HttpEventHandler
      StackMap stack:
            aload 0 /* this */
            aload 2
            monitorexit
         9: areturn
        end local 3 // io.vertx.core.http.impl.HttpEventHandler eventHandler
        10: .line 184
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.Handler io.vertx.core.http.HttpConnection
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        11: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0   12     1       handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
            6   10     3  eventHandler  Lio/vertx/core/http/impl/HttpEventHandler;
      Exception table:
        from    to  target  type
           1     9      10  any
          10    11      10  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/core/http/HttpClientResponse;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.HttpClientResponse pause();
    descriptor: ()Lio/vertx/core/http/HttpClientResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
         0: .line 198
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            invokeinterface io.vertx.core.http.impl.HttpClientStream.doPause:()V
         1: .line 199
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/HttpClientResponseImpl;

  public io.vertx.core.http.HttpClientResponse resume();
    descriptor: ()Lio/vertx/core/http/HttpClientResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
         0: .line 204
            aload 0 /* this */
            ldc 9223372036854775807
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.fetch:(J)Lio/vertx/core/http/HttpClientResponse;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientResponseImpl;

  public io.vertx.core.http.HttpClientResponse fetch(long);
    descriptor: (J)Lio/vertx/core/http/HttpClientResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // long amount
         0: .line 209
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.stream:Lio/vertx/core/http/impl/HttpClientStream;
            lload 1 /* amount */
            invokeinterface io.vertx.core.http.impl.HttpClientStream.doFetch:(J)V
         1: .line 210
            aload 0 /* this */
            areturn
        end local 1 // long amount
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0    2     1  amount  J
    MethodParameters:
        Name  Flags
      amount  

  public io.vertx.core.http.HttpClientResponse customFrameHandler(io.vertx.core.Handler<io.vertx.core.http.HttpFrame>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 215
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 2
            monitorenter
         1: .line 216
            aload 1 /* handler */
            ifnull 3
         2: .line 217
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.checkEnded:()V
         3: .line 219
      StackMap locals: io.vertx.core.http.HttpConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.customFrameHandler:Lio/vertx/core/Handler;
         4: .line 220
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 215
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         7: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0    8     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/http/HttpFrame;>;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/http/HttpFrame;>;)Lio/vertx/core/http/HttpClientResponse;
    MethodParameters:
         Name  Flags
      handler  

  void handleUnknownFrame(io.vertx.core.http.HttpFrame);
    descriptor: (Lio/vertx/core/http/HttpFrame;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // io.vertx.core.http.HttpFrame frame
         0: .line 225
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 2
            monitorenter
         1: .line 226
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.customFrameHandler:Lio/vertx/core/Handler;
            ifnull 3
         2: .line 227
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.customFrameHandler:Lio/vertx/core/Handler;
            aload 1 /* frame */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 225
      StackMap locals: io.vertx.core.http.HttpConnection
      StackMap stack:
            aload 2
            monitorexit
         4: goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: aload 2
            monitorexit
         6: athrow
         7: .line 230
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.http.HttpFrame frame
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0    8     1  frame  Lio/vertx/core/http/HttpFrame;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
       Name  Flags
      frame  

  void handleChunk(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // io.vertx.core.buffer.Buffer data
         0: .line 233
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.request:Lio/vertx/core/http/impl/HttpClientRequestBase;
            invokevirtual io.vertx.core.http.impl.HttpClientRequestBase.dataReceived:()V
         1: .line 235
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 3
            monitorenter
         2: .line 236
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:Lio/vertx/core/http/impl/HttpEventHandler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.http.impl.HttpEventHandler handler
         3: .line 235
            aload 3
            monitorexit
         4: goto 7
        end local 2 // io.vertx.core.http.impl.HttpEventHandler handler
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.buffer.Buffer top io.vertx.core.http.HttpConnection
      StackMap stack: java.lang.Throwable
         5: aload 3
            monitorexit
         6: athrow
        start local 2 // io.vertx.core.http.impl.HttpEventHandler handler
         7: .line 238
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.buffer.Buffer io.vertx.core.http.impl.HttpEventHandler
      StackMap stack:
            aload 2 /* handler */
            ifnull 9
         8: .line 239
            aload 2 /* handler */
            aload 1 /* data */
            invokevirtual io.vertx.core.http.impl.HttpEventHandler.handleChunk:(Lio/vertx/core/buffer/Buffer;)V
         9: .line 241
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.http.impl.HttpEventHandler handler
        end local 1 // io.vertx.core.buffer.Buffer data
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0   10     1     data  Lio/vertx/core/buffer/Buffer;
            3    5     2  handler  Lio/vertx/core/http/impl/HttpEventHandler;
            7   10     2  handler  Lio/vertx/core/http/impl/HttpEventHandler;
      Exception table:
        from    to  target  type
           2     4       5  any
           5     6       5  any
    MethodParameters:
      Name  Flags
      data  

  void handleEnd(io.vertx.core.MultiMap);
    descriptor: (Lio/vertx/core/MultiMap;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // io.vertx.core.MultiMap trailers
         0: .line 245
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 3
            monitorenter
         1: .line 246
            aload 0 /* this */
            aload 1 /* trailers */
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.trailers:Lio/vertx/core/MultiMap;
         2: .line 247
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:Lio/vertx/core/http/impl/HttpEventHandler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.http.impl.HttpEventHandler handler
         3: .line 245
            aload 3
            monitorexit
         4: goto 7
        end local 2 // io.vertx.core.http.impl.HttpEventHandler handler
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.MultiMap top io.vertx.core.http.HttpConnection
      StackMap stack: java.lang.Throwable
         5: aload 3
            monitorexit
         6: athrow
        start local 2 // io.vertx.core.http.impl.HttpEventHandler handler
         7: .line 249
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.MultiMap io.vertx.core.http.impl.HttpEventHandler
      StackMap stack:
            aload 2 /* handler */
            ifnull 9
         8: .line 250
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpEventHandler.handleEnd:()V
         9: .line 252
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.http.impl.HttpEventHandler handler
        end local 1 // io.vertx.core.MultiMap trailers
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0   10     1  trailers  Lio/vertx/core/MultiMap;
            3    5     2   handler  Lio/vertx/core/http/impl/HttpEventHandler;
            7   10     2   handler  Lio/vertx/core/http/impl/HttpEventHandler;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
          Name  Flags
      trailers  

  void handleException(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // java.lang.Throwable e
         0: .line 256
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 3
            monitorenter
         1: .line 257
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.trailers:Lio/vertx/core/MultiMap;
            ifnull 4
         2: .line 258
            aload 3
            monitorexit
         3: return
         4: .line 260
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl java.lang.Throwable top io.vertx.core.http.HttpConnection
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:Lio/vertx/core/http/impl/HttpEventHandler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.http.impl.HttpEventHandler handler
         5: .line 256
            aload 3
            monitorexit
         6: goto 9
        end local 2 // io.vertx.core.http.impl.HttpEventHandler handler
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 3
            monitorexit
         8: athrow
        start local 2 // io.vertx.core.http.impl.HttpEventHandler handler
         9: .line 262
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl java.lang.Throwable io.vertx.core.http.impl.HttpEventHandler
      StackMap stack:
            aload 2 /* handler */
            ifnull 12
        10: .line 263
            aload 2 /* handler */
            aload 1 /* e */
            invokevirtual io.vertx.core.http.impl.HttpEventHandler.handleException:(Ljava/lang/Throwable;)V
        11: .line 264
            goto 13
        12: .line 265
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.http.impl.HttpClientResponseImpl.log:Lio/vertx/core/impl/logging/Logger;
            aload 1 /* e */
            invokeinterface io.vertx.core.impl.logging.Logger.error:(Ljava/lang/Object;)V
        13: .line 267
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.http.impl.HttpEventHandler handler
        end local 1 // java.lang.Throwable e
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0   14     1        e  Ljava/lang/Throwable;
            5    7     2  handler  Lio/vertx/core/http/impl/HttpEventHandler;
            9   14     2  handler  Lio/vertx/core/http/impl/HttpEventHandler;
      Exception table:
        from    to  target  type
           1     3       7  any
           4     6       7  any
           7     8       7  any
    MethodParameters:
      Name  Flags
      e     

  public io.vertx.core.Future<io.vertx.core.buffer.Buffer> body();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
         0: .line 271
            aload 0 /* this */
            iconst_1
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:(Z)Lio/vertx/core/http/impl/HttpEventHandler;
            invokevirtual io.vertx.core.http.impl.HttpEventHandler.body:()Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
    Signature: ()Lio/vertx/core/Future<Lio/vertx/core/buffer/Buffer;>;

  public synchronized io.vertx.core.Future<java.lang.Void> end();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
         0: .line 276
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.checkEnded:()V
         1: .line 277
            aload 0 /* this */
            iconst_1
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.eventHandler:(Z)Lio/vertx/core/http/impl/HttpEventHandler;
            invokevirtual io.vertx.core.http.impl.HttpEventHandler.end:()Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public io.vertx.core.http.HttpClientResponse streamPriorityHandler(io.vertx.core.Handler<io.vertx.core.http.StreamPriority>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 282
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 2
            monitorenter
         1: .line 283
            aload 1 /* handler */
            ifnull 3
         2: .line 284
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.checkEnded:()V
         3: .line 286
      StackMap locals: io.vertx.core.http.HttpConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpClientResponseImpl.priorityHandler:Lio/vertx/core/Handler;
         4: .line 282
            aload 2
            monitorexit
         5: goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: aload 2
            monitorexit
         7: athrow
         8: .line 288
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0    9     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/http/StreamPriority;>;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/http/StreamPriority;>;)Lio/vertx/core/http/HttpClientResponse;
    MethodParameters:
         Name  Flags
      handler  

  void handlePriorityChange(io.vertx.core.http.StreamPriority);
    descriptor: (Lio/vertx/core/http/StreamPriority;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
        start local 1 // io.vertx.core.http.StreamPriority streamPriority
         0: .line 293
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.conn:Lio/vertx/core/http/HttpConnection;
            dup
            astore 3
            monitorenter
         1: .line 294
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpClientResponseImpl.priorityHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         2: .line 293
            aload 3
            monitorexit
         3: goto 6
        end local 2 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.http.StreamPriority top io.vertx.core.http.HttpConnection
      StackMap stack: java.lang.Throwable
         4: aload 3
            monitorexit
         5: athrow
        start local 2 // io.vertx.core.Handler handler
         6: .line 296
      StackMap locals: io.vertx.core.http.impl.HttpClientResponseImpl io.vertx.core.http.StreamPriority io.vertx.core.Handler
      StackMap stack:
            aload 2 /* handler */
            ifnull 8
         7: .line 297
            aload 2 /* handler */
            aload 1 /* streamPriority */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         8: .line 299
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.http.StreamPriority streamPriority
        end local 0 // io.vertx.core.http.impl.HttpClientResponseImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lio/vertx/core/http/impl/HttpClientResponseImpl;
            0    9     1  streamPriority  Lio/vertx/core/http/StreamPriority;
            2    4     2         handler  Lio/vertx/core/Handler<Lio/vertx/core/http/StreamPriority;>;
            6    9     2         handler  Lio/vertx/core/Handler<Lio/vertx/core/http/StreamPriority;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
                Name  Flags
      streamPriority  

  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.HttpClientResponseImpl.pause:()Lio/vertx/core/http/HttpClientResponse;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream handler(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
            checkcast io.vertx.core.Handler
            invokevirtual io.vertx.core.http.impl.HttpClientResponseImpl.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public io.vertx.core.http.HttpClientRequest request();
    descriptor: ()Lio/vertx/core/http/HttpClientRequest;
    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.HttpClientResponseImpl.request:()Lio/vertx/core/http/impl/HttpClientRequestBase;
            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.HttpClientResponseImpl.resume:()Lio/vertx/core/http/HttpClientResponse;
            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.HttpClientResponseImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
            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.HttpClientResponseImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
            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.HttpClientResponseImpl.fetch:(J)Lio/vertx/core/http/HttpClientResponse;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "HttpClientResponseImpl.java"