public class io.vertx.core.http.impl.HttpServerResponseImpl implements io.vertx.core.http.HttpServerResponse
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.http.impl.HttpServerResponseImpl
  super_class: java.lang.Object
{
  private static final io.vertx.core.buffer.Buffer EMPTY_BUFFER;
    descriptor: Lio/vertx/core/buffer/Buffer;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final io.vertx.core.logging.Logger log;
    descriptor: Lio/vertx/core/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

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

  private io.netty.handler.codec.http.HttpResponseStatus status;
    descriptor: Lio/netty/handler/codec/http/HttpResponseStatus;
    flags: (0x0002) ACC_PRIVATE

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

  private final boolean keepAlive;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean head;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

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

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

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

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

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

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

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

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

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

  private io.netty.handler.codec.http.HttpHeaders trailingHeaders;
    descriptor: Lio/netty/handler/codec/http/HttpHeaders;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String statusMessage;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

  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 56
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Lio/netty/buffer/ByteBuf;)Lio/vertx/core/buffer/Buffer;
            putstatic io.vertx.core.http.impl.HttpServerResponseImpl.EMPTY_BUFFER:Lio/vertx/core/buffer/Buffer;
         1: .line 57
            ldc Lio/vertx/core/http/impl/HttpServerResponseImpl;
            invokestatic io.vertx.core.logging.LoggerFactory.getLogger:(Ljava/lang/Class;)Lio/vertx/core/logging/Logger;
            putstatic io.vertx.core.http.impl.HttpServerResponseImpl.log:Lio/vertx/core/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(io.vertx.core.impl.VertxInternal, io.vertx.core.http.impl.Http1xServerConnection, io.netty.handler.codec.http.HttpRequest, java.lang.Object);
    descriptor: (Lio/vertx/core/impl/VertxInternal;Lio/vertx/core/http/impl/Http1xServerConnection;Lio/netty/handler/codec/http/HttpRequest;Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.impl.VertxInternal vertx
        start local 2 // io.vertx.core.http.impl.Http1xServerConnection conn
        start local 3 // io.netty.handler.codec.http.HttpRequest request
        start local 4 // java.lang.Object requestMetric
         0: .line 83
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 78
            aload 0 /* this */
            getstatic io.netty.handler.codec.http.EmptyHttpHeaders.INSTANCE:Lio/netty/handler/codec/http/EmptyHttpHeaders;
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.trailingHeaders:Lio/netty/handler/codec/http/HttpHeaders;
         2: .line 84
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.vertx:Lio/vertx/core/impl/VertxInternal;
         3: .line 85
            aload 0 /* this */
            aload 2 /* conn */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
         4: .line 86
            aload 0 /* this */
            aload 3 /* request */
            invokeinterface io.netty.handler.codec.http.HttpRequest.protocolVersion:()Lio/netty/handler/codec/http/HttpVersion;
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
         5: .line 87
            aload 0 /* this */
            new io.vertx.core.http.impl.headers.VertxHttpHeaders
            dup
            invokespecial io.vertx.core.http.impl.headers.VertxHttpHeaders.<init>:()V
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
         6: .line 88
            aload 0 /* this */
            getstatic io.netty.handler.codec.http.HttpResponseStatus.OK:Lio/netty/handler/codec/http/HttpResponseStatus;
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
         7: .line 89
            aload 0 /* this */
            aload 4 /* requestMetric */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.requestMetric:Ljava/lang/Object;
         8: .line 90
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
            getstatic io.netty.handler.codec.http.HttpVersion.HTTP_1_1:Lio/netty/handler/codec/http/HttpVersion;
            if_acmpne 9
            aload 3 /* request */
            invokeinterface io.netty.handler.codec.http.HttpRequest.headers:()Lio/netty/handler/codec/http/HttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.CONNECTION:Ljava/lang/CharSequence;
            getstatic io.vertx.core.http.HttpHeaders.CLOSE:Ljava/lang/CharSequence;
            iconst_1
            invokevirtual io.netty.handler.codec.http.HttpHeaders.contains:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;Z)Z
            ifeq 11
         9: .line 91
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.impl.VertxInternal io.vertx.core.http.impl.Http1xServerConnection io.netty.handler.codec.http.HttpRequest java.lang.Object
      StackMap stack: io.vertx.core.http.impl.HttpServerResponseImpl
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
            getstatic io.netty.handler.codec.http.HttpVersion.HTTP_1_0:Lio/netty/handler/codec/http/HttpVersion;
            if_acmpne 10
            aload 3 /* request */
            invokeinterface io.netty.handler.codec.http.HttpRequest.headers:()Lio/netty/handler/codec/http/HttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.CONNECTION:Ljava/lang/CharSequence;
            getstatic io.vertx.core.http.HttpHeaders.KEEP_ALIVE:Ljava/lang/CharSequence;
            iconst_1
            invokevirtual io.netty.handler.codec.http.HttpHeaders.contains:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;Z)Z
            ifne 11
      StackMap locals:
      StackMap stack: io.vertx.core.http.impl.HttpServerResponseImpl
        10: iconst_0
            goto 12
      StackMap locals:
      StackMap stack: io.vertx.core.http.impl.HttpServerResponseImpl
        11: iconst_1
        12: .line 90
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.impl.VertxInternal io.vertx.core.http.impl.Http1xServerConnection io.netty.handler.codec.http.HttpRequest java.lang.Object
      StackMap stack: io.vertx.core.http.impl.HttpServerResponseImpl int
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.keepAlive:Z
        13: .line 92
            aload 0 /* this */
            aload 3 /* request */
            invokeinterface io.netty.handler.codec.http.HttpRequest.method:()Lio/netty/handler/codec/http/HttpMethod;
            getstatic io.netty.handler.codec.http.HttpMethod.HEAD:Lio/netty/handler/codec/http/HttpMethod;
            if_acmpne 14
            iconst_1
            goto 15
      StackMap locals:
      StackMap stack: io.vertx.core.http.impl.HttpServerResponseImpl
        14: iconst_0
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.impl.VertxInternal io.vertx.core.http.impl.Http1xServerConnection io.netty.handler.codec.http.HttpRequest java.lang.Object
      StackMap stack: io.vertx.core.http.impl.HttpServerResponseImpl int
        15: putfield io.vertx.core.http.impl.HttpServerResponseImpl.head:Z
        16: .line 93
            return
        end local 4 // java.lang.Object requestMetric
        end local 3 // io.netty.handler.codec.http.HttpRequest request
        end local 2 // io.vertx.core.http.impl.Http1xServerConnection conn
        end local 1 // io.vertx.core.impl.VertxInternal vertx
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0   17     1          vertx  Lio/vertx/core/impl/VertxInternal;
            0   17     2           conn  Lio/vertx/core/http/impl/Http1xServerConnection;
            0   17     3        request  Lio/netty/handler/codec/http/HttpRequest;
            0   17     4  requestMetric  Ljava/lang/Object;
    MethodParameters:
               Name  Flags
      vertx          final
      conn           
      request        
      requestMetric  

  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.HttpServerResponseImpl this
         0: .line 97
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;

  public io.vertx.core.MultiMap trailers();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 102
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.trailers:Lio/vertx/core/MultiMap;
            ifnonnull 4
         1: .line 103
            new io.vertx.core.http.impl.headers.VertxHttpHeaders
            dup
            invokespecial io.vertx.core.http.impl.headers.VertxHttpHeaders.<init>:()V
            astore 1 /* v */
        start local 1 // io.vertx.core.http.impl.headers.VertxHttpHeaders v
         2: .line 104
            aload 0 /* this */
            aload 1 /* v */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.trailers:Lio/vertx/core/MultiMap;
         3: .line 105
            aload 0 /* this */
            aload 1 /* v */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.trailingHeaders:Lio/netty/handler/codec/http/HttpHeaders;
        end local 1 // io.vertx.core.http.impl.headers.VertxHttpHeaders v
         4: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.trailers:Lio/vertx/core/MultiMap;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            2    4     1     v  Lio/vertx/core/http/impl/headers/VertxHttpHeaders;

  public int getStatusCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 112
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.code:()I
            ireturn
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;

  public io.vertx.core.http.HttpServerResponse setStatusCode(int);
    descriptor: (I)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // int statusCode
         0: .line 117
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.statusMessage:Ljava/lang/String;
            ifnull 1
            new io.netty.handler.codec.http.HttpResponseStatus
            dup
            iload 1 /* statusCode */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.statusMessage:Ljava/lang/String;
            invokespecial io.netty.handler.codec.http.HttpResponseStatus.<init>:(ILjava/lang/String;)V
            goto 2
      StackMap locals:
      StackMap stack: io.vertx.core.http.impl.HttpServerResponseImpl
         1: iload 1 /* statusCode */
            invokestatic io.netty.handler.codec.http.HttpResponseStatus.valueOf:(I)Lio/netty/handler/codec/http/HttpResponseStatus;
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl int
      StackMap stack: io.vertx.core.http.impl.HttpServerResponseImpl io.netty.handler.codec.http.HttpResponseStatus
         2: putfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
         3: .line 118
            aload 0 /* this */
            areturn
        end local 1 // int statusCode
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    4     1  statusCode  I
    MethodParameters:
            Name  Flags
      statusCode  

  public java.lang.String getStatusMessage();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 123
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.reasonPhrase:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;

  public io.vertx.core.http.HttpServerResponse setStatusMessage(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String statusMessage
         0: .line 128
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 129
            aload 0 /* this */
            aload 1 /* statusMessage */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.statusMessage:Ljava/lang/String;
         2: .line 130
            aload 0 /* this */
            new io.netty.handler.codec.http.HttpResponseStatus
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.code:()I
            aload 1 /* statusMessage */
            invokespecial io.netty.handler.codec.http.HttpResponseStatus.<init>:(ILjava/lang/String;)V
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
         3: .line 131
            aload 0 /* this */
            aload 2
            monitorexit
         4: areturn
         5: .line 128
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.String io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // java.lang.String statusMessage
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    7     1  statusMessage  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
               Name  Flags
      statusMessage  

  public io.vertx.core.http.impl.HttpServerResponseImpl setChunked(boolean);
    descriptor: (Z)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // boolean chunked
         0: .line 137
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 138
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 140
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
            getstatic io.netty.handler.codec.http.HttpVersion.HTTP_1_0:Lio/netty/handler/codec/http/HttpVersion;
            if_acmpeq 6
         3: .line 141
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.TRANSFER_ENCODING:Ljava/lang/CharSequence;
            iload 1 /* chunked */
            ifeq 4
            ldc "chunked"
            goto 5
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl int io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: io.vertx.core.http.impl.headers.VertxHttpHeaders java.lang.CharSequence
         4: aconst_null
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl int io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: io.vertx.core.http.impl.headers.VertxHttpHeaders java.lang.CharSequence java.lang.String
         5: invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            pop
         6: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2
            monitorexit
         7: areturn
         8: .line 137
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         9: athrow
        end local 1 // boolean chunked
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0   10     1  chunked  Z
      Exception table:
        from    to  target  type
           1     7       8  any
           8     9       8  any
    MethodParameters:
         Name  Flags
      chunked  

  public boolean isChunked();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 149
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 150
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.TRANSFER_ENCODING:Ljava/lang/CharSequence;
            getstatic io.vertx.core.http.HttpHeaders.CHUNKED:Ljava/lang/CharSequence;
            iconst_1
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.contains:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;Z)Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 149
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public io.vertx.core.http.impl.HttpServerResponseImpl putHeader(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String key
        start local 2 // java.lang.String value
         0: .line 156
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 157
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 158
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            pop
         3: .line 159
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 156
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.String java.lang.String io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.String value
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    7     1    key  Ljava/lang/String;
            0    7     2  value  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
       Name  Flags
      key    
      value  

  public io.vertx.core.http.impl.HttpServerResponseImpl putHeader(java.lang.String, java.lang.Iterable<java.lang.String>);
    descriptor: (Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Iterable values
         0: .line 165
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 166
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 167
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            aload 1 /* key */
            aload 2 /* values */
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.set:(Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            pop
         3: .line 168
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 165
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.String java.lang.Iterable io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.Iterable values
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    7     1     key  Ljava/lang/String;
            0    7     2  values  Ljava/lang/Iterable<Ljava/lang/String;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (Ljava/lang/String;Ljava/lang/Iterable<Ljava/lang/String;>;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    MethodParameters:
        Name  Flags
      key     
      values  

  public io.vertx.core.http.impl.HttpServerResponseImpl putTrailer(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String key
        start local 2 // java.lang.String value
         0: .line 174
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 175
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 176
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.trailers:()Lio/vertx/core/MultiMap;
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         3: .line 177
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 174
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.String java.lang.String io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.String value
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    7     1    key  Ljava/lang/String;
            0    7     2  value  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
       Name  Flags
      key    
      value  

  public io.vertx.core.http.impl.HttpServerResponseImpl putTrailer(java.lang.String, java.lang.Iterable<java.lang.String>);
    descriptor: (Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Iterable values
         0: .line 183
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 184
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 185
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.trailers:()Lio/vertx/core/MultiMap;
            aload 1 /* key */
            aload 2 /* values */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/MultiMap;
            pop
         3: .line 186
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 183
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.String java.lang.Iterable io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.Iterable values
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    7     1     key  Ljava/lang/String;
            0    7     2  values  Ljava/lang/Iterable<Ljava/lang/String;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (Ljava/lang/String;Ljava/lang/Iterable<Ljava/lang/String;>;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    MethodParameters:
        Name  Flags
      key     
      values  

  public io.vertx.core.http.HttpServerResponse putHeader(java.lang.CharSequence, java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.CharSequence name
        start local 2 // java.lang.CharSequence value
         0: .line 192
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 193
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 194
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            aload 1 /* name */
            aload 2 /* value */
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            pop
         3: .line 195
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 192
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.CharSequence java.lang.CharSequence io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.CharSequence value
        end local 1 // java.lang.CharSequence name
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    7     1   name  Ljava/lang/CharSequence;
            0    7     2  value  Ljava/lang/CharSequence;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
       Name  Flags
      name   
      value  

  public io.vertx.core.http.HttpServerResponse putHeader(java.lang.CharSequence, java.lang.Iterable<java.lang.CharSequence>);
    descriptor: (Ljava/lang/CharSequence;Ljava/lang/Iterable;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.CharSequence name
        start local 2 // java.lang.Iterable values
         0: .line 201
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 202
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 203
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            aload 1 /* name */
            aload 2 /* values */
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.set:(Ljava/lang/CharSequence;Ljava/lang/Iterable;)Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            pop
         3: .line 204
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 201
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.CharSequence java.lang.Iterable io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.Iterable values
        end local 1 // java.lang.CharSequence name
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    7     1    name  Ljava/lang/CharSequence;
            0    7     2  values  Ljava/lang/Iterable<Ljava/lang/CharSequence;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (Ljava/lang/CharSequence;Ljava/lang/Iterable<Ljava/lang/CharSequence;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
        Name  Flags
      name    
      values  

  public io.vertx.core.http.HttpServerResponse putTrailer(java.lang.CharSequence, java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.CharSequence name
        start local 2 // java.lang.CharSequence value
         0: .line 210
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 211
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 212
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.trailers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/MultiMap;
            pop
         3: .line 213
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 210
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.CharSequence java.lang.CharSequence io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.CharSequence value
        end local 1 // java.lang.CharSequence name
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    7     1   name  Ljava/lang/CharSequence;
            0    7     2  value  Ljava/lang/CharSequence;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
       Name  Flags
      name   
      value  

  public io.vertx.core.http.HttpServerResponse putTrailer(java.lang.CharSequence, java.lang.Iterable<java.lang.CharSequence>);
    descriptor: (Ljava/lang/CharSequence;Ljava/lang/Iterable;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.CharSequence name
        start local 2 // java.lang.Iterable value
         0: .line 219
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 220
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 221
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.trailers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/CharSequence;Ljava/lang/Iterable;)Lio/vertx/core/MultiMap;
            pop
         3: .line 222
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 219
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.CharSequence java.lang.Iterable io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.Iterable value
        end local 1 // java.lang.CharSequence name
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    7     1   name  Ljava/lang/CharSequence;
            0    7     2  value  Ljava/lang/Iterable<Ljava/lang/CharSequence;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (Ljava/lang/CharSequence;Ljava/lang/Iterable<Ljava/lang/CharSequence;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
       Name  Flags
      name   
      value  

  public io.vertx.core.http.HttpServerResponse setWriteQueueMaxSize(int);
    descriptor: (I)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // int size
         0: .line 228
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 229
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 230
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            iload 1 /* size */
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.doSetWriteQueueMaxSize:(I)V
         3: .line 231
            aload 0 /* this */
            aload 2
            monitorexit
         4: areturn
         5: .line 228
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl int io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // int size
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    7     1  size  I
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
      Name  Flags
      size  

  public boolean writeQueueFull();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 237
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 238
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         2: .line 239
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.isNotWritable:()Z
            aload 1
            monitorexit
         3: ireturn
         4: .line 237
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         5: athrow
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any

  public io.vertx.core.http.HttpServerResponse drainHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 245
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 246
            aload 1 /* handler */
            ifnull 3
         2: .line 247
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         3: .line 249
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.drainHandler:Lio/vertx/core/Handler;
         4: .line 250
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.getContext:()Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/http/impl/HttpServerResponseImpl;)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/HttpServerResponseImpl.lambda$0(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.runOnContext:(Lio/vertx/core/Handler;)V
         5: .line 251
            aload 0 /* this */
            aload 2
            monitorexit
         6: areturn
         7: .line 245
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         8: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    9     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.HttpServerResponse exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 257
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 258
            aload 1 /* handler */
            ifnull 3
         2: .line 259
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         3: .line 261
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.exceptionHandler:Lio/vertx/core/Handler;
         4: .line 262
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 257
      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.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    8     1  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.HttpServerResponse closeHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 268
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 269
            aload 1 /* handler */
            ifnull 3
         2: .line 270
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         3: .line 272
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.closeHandler:Lio/vertx/core/Handler;
         4: .line 273
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 268
      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.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    8     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.HttpServerResponse endHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 279
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 280
            aload 1 /* handler */
            ifnull 3
         2: .line 281
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         3: .line 283
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.endHandler:Lio/vertx/core/Handler;
         4: .line 284
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 279
      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.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    8     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/http/HttpServerResponse;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.impl.HttpServerResponseImpl write(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
         0: .line 290
            aload 1 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            astore 2 /* buf */
        start local 2 // io.netty.buffer.ByteBuf buf
         1: .line 291
            aload 0 /* this */
            aload 2 /* buf */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getfield io.vertx.core.http.impl.Http1xServerConnection.voidPromise:Lio/netty/channel/VoidChannelPromise;
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
        end local 2 // io.netty.buffer.ByteBuf buf
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    2     1  chunk  Lio/vertx/core/buffer/Buffer;
            1    2     2    buf  Lio/netty/buffer/ByteBuf;
    MethodParameters:
       Name  Flags
      chunk  

  public io.vertx.core.http.HttpServerResponse write(io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 296
            aload 0 /* this */
            aload 1 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.toPromise:(Lio/vertx/core/Handler;)Lio/netty/channel/ChannelPromise;
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1    chunk  Lio/vertx/core/buffer/Buffer;
            0    1     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      chunk    
      handler  

  public io.vertx.core.http.impl.HttpServerResponseImpl write(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String chunk
        start local 2 // java.lang.String enc
         0: .line 301
            aload 0 /* this */
            aload 1 /* chunk */
            aload 2 /* enc */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getfield io.vertx.core.http.impl.Http1xServerConnection.voidPromise:Lio/netty/channel/VoidChannelPromise;
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1  chunk  Ljava/lang/String;
            0    1     2    enc  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      chunk  
      enc    

  public io.vertx.core.http.HttpServerResponse write(java.lang.String, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String chunk
        start local 2 // java.lang.String enc
        start local 3 // io.vertx.core.Handler handler
         0: .line 306
            aload 0 /* this */
            aload 1 /* chunk */
            aload 2 /* enc */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            aload 3 /* handler */
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.toPromise:(Lio/vertx/core/Handler;)Lio/netty/channel/ChannelPromise;
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
        end local 3 // io.vertx.core.Handler handler
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1    chunk  Ljava/lang/String;
            0    1     2      enc  Ljava/lang/String;
            0    1     3  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      chunk    
      enc      
      handler  

  public io.vertx.core.http.impl.HttpServerResponseImpl write(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String chunk
         0: .line 311
            aload 0 /* this */
            aload 1 /* chunk */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getfield io.vertx.core.http.impl.Http1xServerConnection.voidPromise:Lio/netty/channel/VoidChannelPromise;
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1  chunk  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      chunk  

  public io.vertx.core.http.HttpServerResponse write(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 316
            aload 0 /* this */
            aload 1 /* chunk */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.toPromise:(Lio/vertx/core/Handler;)Lio/netty/channel/ChannelPromise;
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1    chunk  Ljava/lang/String;
            0    1     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      chunk    
      handler  

  public io.vertx.core.http.HttpServerResponse writeContinue();
    descriptor: ()Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 321
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.write100Continue:()V
         1: .line 322
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;

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

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

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

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

  public void end(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
         0: .line 347
            aload 0 /* this */
            aload 1 /* chunk */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getfield io.vertx.core.http.impl.Http1xServerConnection.voidPromise:Lio/netty/channel/VoidChannelPromise;
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.end:(Lio/vertx/core/buffer/Buffer;Lio/netty/channel/ChannelPromise;)V
         1: .line 348
            return
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    2     1  chunk  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
       Name  Flags
      chunk  

  public void end(io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 352
            aload 0 /* this */
            aload 1 /* chunk */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.toPromise:(Lio/vertx/core/Handler;)Lio/netty/channel/ChannelPromise;
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.end:(Lio/vertx/core/buffer/Buffer;Lio/netty/channel/ChannelPromise;)V
         1: .line 353
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    2     1    chunk  Lio/vertx/core/buffer/Buffer;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      chunk    
      handler  

  private void end(io.vertx.core.buffer.Buffer, io.netty.channel.ChannelPromise);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=6, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 356
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 357
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.written:Z
            ifeq 3
         2: .line 358
            new java.lang.IllegalStateException
            dup
            ldc "Response has already been written"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 360
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 1 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            astore 4 /* data */
        start local 4 // io.netty.buffer.ByteBuf data
         4: .line 361
            aload 0 /* this */
            dup
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.bytesWritten:J
            aload 4 /* data */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            i2l
            ladd
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.bytesWritten:J
         5: .line 363
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headWritten:Z
            ifne 9
         6: .line 366
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.bytesWritten:J
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.prepareHeaders:(J)V
         7: .line 367
            new io.vertx.core.http.impl.AssembledFullHttpResponse
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.head:Z
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            aload 4 /* data */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.trailingHeaders:Lio/netty/handler/codec/http/HttpHeaders;
            invokespecial io.vertx.core.http.impl.AssembledFullHttpResponse.<init>:(ZLio/netty/handler/codec/http/HttpVersion;Lio/netty/handler/codec/http/HttpResponseStatus;Lio/netty/handler/codec/http/HttpHeaders;Lio/netty/buffer/ByteBuf;Lio/netty/handler/codec/http/HttpHeaders;)V
            astore 5 /* msg */
        start local 5 // io.netty.handler.codec.http.HttpObject msg
         8: .line 368
            goto 10
        end local 5 // io.netty.handler.codec.http.HttpObject msg
         9: .line 369
      StackMap locals: io.netty.buffer.ByteBuf
      StackMap stack:
            new io.vertx.core.http.impl.AssembledLastHttpContent
            dup
            aload 4 /* data */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.trailingHeaders:Lio/netty/handler/codec/http/HttpHeaders;
            invokespecial io.vertx.core.http.impl.AssembledLastHttpContent.<init>:(Lio/netty/buffer/ByteBuf;Lio/netty/handler/codec/http/HttpHeaders;)V
            astore 5 /* msg */
        start local 5 // io.netty.handler.codec.http.HttpObject msg
        10: .line 371
      StackMap locals: io.netty.handler.codec.http.HttpObject
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            aload 5 /* msg */
            aload 2 /* promise */
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.writeToChannel:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
        11: .line 372
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.keepAlive:Z
            ifne 14
        12: .line 373
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.closeConnAfterWrite:()V
        13: .line 374
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.closed:Z
        14: .line 376
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.written:Z
        15: .line 377
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.responseComplete:()V
        16: .line 378
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.bodyEndHandler:Lio/vertx/core/Handler;
            ifnull 18
        17: .line 379
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.bodyEndHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        18: .line 381
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.closed:Z
            ifne 20
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.endHandler:Lio/vertx/core/Handler;
            ifnull 20
        19: .line 382
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.endHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 5 // io.netty.handler.codec.http.HttpObject msg
        end local 4 // io.netty.buffer.ByteBuf data
        20: .line 356
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
        21: goto 24
      StackMap locals:
      StackMap stack: java.lang.Throwable
        22: aload 3
            monitorexit
        23: athrow
        24: .line 385
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   25     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0   25     1    chunk  Lio/vertx/core/buffer/Buffer;
            0   25     2  promise  Lio/netty/channel/ChannelPromise;
            4   20     4     data  Lio/netty/buffer/ByteBuf;
            8    9     5      msg  Lio/netty/handler/codec/http/HttpObject;
           10   20     5      msg  Lio/netty/handler/codec/http/HttpObject;
      Exception table:
        from    to  target  type
           1    21      22  any
          22    23      22  any
    MethodParameters:
         Name  Flags
      chunk    
      promise  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 389
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 390
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.closed:Z
            ifne 7
         2: .line 391
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headWritten:Z
            ifeq 5
         3: .line 392
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.closeConnAfterWrite:()V
         4: .line 393
            goto 6
         5: .line 394
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.close:()V
         6: .line 396
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.closed:Z
         7: .line 389
      StackMap locals:
      StackMap stack:
            aload 1
            monitorexit
         8: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 1
            monitorexit
        10: athrow
        11: .line 399
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
      Exception table:
        from    to  target  type
           1     8       9  any
           9    10       9  any

  public void end();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 403
            aload 0 /* this */
            getstatic io.vertx.core.http.impl.HttpServerResponseImpl.EMPTY_BUFFER:Lio/vertx/core/buffer/Buffer;
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.end:(Lio/vertx/core/buffer/Buffer;)V
         1: .line 404
            return
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;

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

  public io.vertx.core.http.impl.HttpServerResponseImpl sendFile(java.lang.String, long, long);
    descriptor: (Ljava/lang/String;JJ)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String filename
        start local 2 // long offset
        start local 4 // long length
         0: .line 413
            aload 0 /* this */
            aload 1 /* filename */
            lload 2 /* offset */
            lload 4 /* length */
            aconst_null
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.doSendFile:(Ljava/lang/String;JJLio/vertx/core/Handler;)V
         1: .line 414
            aload 0 /* this */
            areturn
        end local 4 // long length
        end local 2 // long offset
        end local 1 // java.lang.String filename
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    2     1  filename  Ljava/lang/String;
            0    2     2    offset  J
            0    2     4    length  J
    MethodParameters:
          Name  Flags
      filename  
      offset    
      length    

  public io.vertx.core.http.HttpServerResponse sendFile(java.lang.String, long, long, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;JJLio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=5
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String filename
        start local 2 // long start
        start local 4 // long end
        start local 6 // io.vertx.core.Handler resultHandler
         0: .line 419
            aload 0 /* this */
            aload 1 /* filename */
            lload 2 /* start */
            lload 4 /* end */
            aload 6 /* resultHandler */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.doSendFile:(Ljava/lang/String;JJLio/vertx/core/Handler;)V
         1: .line 420
            aload 0 /* this */
            areturn
        end local 6 // io.vertx.core.Handler resultHandler
        end local 4 // long end
        end local 2 // long start
        end local 1 // java.lang.String filename
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    2     1       filename  Ljava/lang/String;
            0    2     2          start  J
            0    2     4            end  J
            0    2     6  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/lang/String;JJLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
               Name  Flags
      filename       
      start          
      end            
      resultHandler  

  public boolean ended();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 425
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 426
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.written:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 425
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public boolean closed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 432
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 433
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.closed:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 432
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public boolean headWritten();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 439
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 440
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headWritten:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 439
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public long bytesWritten();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 446
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 447
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.bytesWritten:J
            aload 1
            monitorexit
         2: lreturn
         3: .line 446
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public io.vertx.core.http.HttpServerResponse headersEndHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 453
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 454
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.headersEndHandler:Lio/vertx/core/Handler;
         2: .line 455
            aload 0 /* this */
            aload 2
            monitorexit
         3: areturn
         4: .line 453
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.Handler io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         5: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    6     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.HttpServerResponse bodyEndHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 461
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 462
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.bodyEndHandler:Lio/vertx/core/Handler;
         2: .line 463
            aload 0 /* this */
            aload 2
            monitorexit
         3: areturn
         4: .line 461
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.Handler io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         5: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    6     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      handler  

  private void doSendFile(java.lang.String, long, long, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;JJLio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=15, args_size=5
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.String filename
        start local 2 // long offset
        start local 4 // long length
        start local 6 // io.vertx.core.Handler resultHandler
         0: .line 468
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 7
            monitorenter
         1: .line 469
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headWritten:Z
            ifeq 3
         2: .line 470
            new java.lang.IllegalStateException
            dup
            ldc "Head already written"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 472
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         4: .line 473
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 1 /* filename */
            invokeinterface io.vertx.core.impl.VertxInternal.resolveFile:(Ljava/lang/String;)Ljava/io/File;
            astore 8 /* file */
        start local 8 // java.io.File file
         5: .line 475
            aload 8 /* file */
            invokevirtual java.io.File.exists:()Z
            ifne 13
         6: .line 476
            aload 6 /* resultHandler */
            ifnull 10
         7: .line 477
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            astore 9 /* ctx */
        start local 9 // io.vertx.core.impl.ContextInternal ctx
         8: .line 478
            aload 9 /* ctx */
            aload 6 /* resultHandler */
            invokedynamic handle(Lio/vertx/core/Handler;)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/HttpServerResponseImpl.lambda$1(Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.runOnContext:(Lio/vertx/core/Handler;)V
        end local 9 // io.vertx.core.impl.ContextInternal ctx
         9: .line 479
            goto 11
        10: .line 480
      StackMap locals: java.io.File
      StackMap stack:
            getstatic io.vertx.core.http.impl.HttpServerResponseImpl.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "File not found: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* filename */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;)V
        11: .line 482
      StackMap locals:
      StackMap stack:
            aload 7
            monitorexit
        12: return
        13: .line 485
      StackMap locals:
      StackMap stack:
            lload 4 /* length */
            aload 8 /* file */
            invokevirtual java.io.File.length:()J
            lload 2 /* offset */
            lsub
            invokestatic java.lang.Math.min:(JJ)J
            lstore 9 /* contentLength */
        start local 9 // long contentLength
        14: .line 486
            aload 0 /* this */
            lload 9 /* contentLength */
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.bytesWritten:J
        15: .line 487
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.CONTENT_TYPE:Ljava/lang/CharSequence;
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.contains:(Ljava/lang/CharSequence;)Z
            ifne 19
        16: .line 488
            aload 1 /* filename */
            invokestatic io.vertx.core.http.impl.MimeMapping.getMimeTypeForFilename:(Ljava/lang/String;)Ljava/lang/String;
            astore 11 /* contentType */
        start local 11 // java.lang.String contentType
        17: .line 489
            aload 11 /* contentType */
            ifnull 19
        18: .line 490
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.CONTENT_TYPE:Ljava/lang/CharSequence;
            aload 11 /* contentType */
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            pop
        end local 11 // java.lang.String contentType
        19: .line 493
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.bytesWritten:J
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.prepareHeaders:(J)V
        20: .line 496
            aconst_null
            astore 12 /* raf */
        start local 12 // java.io.RandomAccessFile raf
        21: .line 498
            new java.io.RandomAccessFile
            dup
            aload 8 /* file */
            ldc "r"
            invokespecial java.io.RandomAccessFile.<init>:(Ljava/io/File;Ljava/lang/String;)V
            astore 12 /* raf */
        22: .line 499
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            new io.vertx.core.http.impl.AssembledHttpResponse
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.head:Z
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            invokespecial io.vertx.core.http.impl.AssembledHttpResponse.<init>:(ZLio/netty/handler/codec/http/HttpVersion;Lio/netty/handler/codec/http/HttpResponseStatus;Lio/netty/handler/codec/http/HttpHeaders;)V
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.writeToChannel:(Ljava/lang/Object;)V
        23: .line 500
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            aload 12 /* raf */
            lload 2 /* offset */
            aload 8 /* file */
            invokevirtual java.io.File.length:()J
            invokestatic java.lang.Math.min:(JJ)J
            lload 9 /* contentLength */
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.sendFile:(Ljava/io/RandomAccessFile;JJ)Lio/netty/channel/ChannelFuture;
            astore 11 /* channelFuture */
        start local 11 // io.netty.channel.ChannelFuture channelFuture
        24: .line 501
            goto 37
        end local 11 // io.netty.channel.ChannelFuture channelFuture
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.String long long io.vertx.core.Handler io.vertx.core.http.impl.Http1xServerConnection java.io.File long top java.io.RandomAccessFile
      StackMap stack: java.io.IOException
        25: astore 13 /* e */
        start local 13 // java.io.IOException e
        26: .line 503
            aload 12 /* raf */
            ifnull 30
        27: .line 504
            aload 12 /* raf */
            invokevirtual java.io.RandomAccessFile.close:()V
        28: .line 506
            goto 30
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.String long long io.vertx.core.Handler io.vertx.core.http.impl.Http1xServerConnection java.io.File long top java.io.RandomAccessFile java.io.IOException
      StackMap stack: java.io.IOException
        29: pop
        30: .line 508
      StackMap locals:
      StackMap stack:
            aload 6 /* resultHandler */
            ifnull 34
        31: .line 509
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            astore 14 /* ctx */
        start local 14 // io.vertx.core.impl.ContextInternal ctx
        32: .line 510
            aload 14 /* ctx */
            aload 6 /* resultHandler */
            aload 13 /* e */
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/io/IOException;)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/HttpServerResponseImpl.lambda$2(Lio/vertx/core/Handler;Ljava/io/IOException;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.runOnContext:(Lio/vertx/core/Handler;)V
        end local 14 // io.vertx.core.impl.ContextInternal ctx
        33: .line 511
            goto 35
        34: .line 512
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.http.impl.HttpServerResponseImpl.log:Lio/vertx/core/logging/Logger;
            ldc "Failed to send file"
            aload 13 /* e */
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        35: .line 514
      StackMap locals:
      StackMap stack:
            aload 7
            monitorexit
        36: return
        end local 13 // java.io.IOException e
        start local 11 // io.netty.channel.ChannelFuture channelFuture
        37: .line 516
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.String long long io.vertx.core.Handler io.vertx.core.http.impl.Http1xServerConnection java.io.File long io.netty.channel.ChannelFuture java.io.RandomAccessFile
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.written:Z
        38: .line 518
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            astore 13 /* ctx */
        start local 13 // io.vertx.core.impl.ContextInternal ctx
        39: .line 519
            aload 11 /* channelFuture */
            aload 0 /* this */
            aload 6 /* resultHandler */
            aload 13 /* ctx */
            invokedynamic operationComplete(Lio/vertx/core/http/impl/HttpServerResponseImpl;Lio/vertx/core/Handler;Lio/vertx/core/impl/ContextInternal;)Lio/netty/util/concurrent/GenericFutureListener;
              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:
                  (Lio/netty/util/concurrent/Future;)V
                  io/vertx/core/http/impl/HttpServerResponseImpl.lambda$3(Lio/vertx/core/Handler;Lio/vertx/core/impl/ContextInternal;Lio/netty/util/concurrent/Future;)V (7)
                  (Lio/netty/util/concurrent/Future;)V
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
        end local 13 // io.vertx.core.impl.ContextInternal ctx
        end local 12 // java.io.RandomAccessFile raf
        end local 11 // io.netty.channel.ChannelFuture channelFuture
        end local 9 // long contentLength
        end local 8 // java.io.File file
        40: .line 468
            aload 7
            monitorexit
        41: goto 44
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.String long long io.vertx.core.Handler io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
        42: aload 7
            monitorexit
        43: athrow
        44: .line 558
      StackMap locals:
      StackMap stack:
            return
        end local 6 // io.vertx.core.Handler resultHandler
        end local 4 // long length
        end local 2 // long offset
        end local 1 // java.lang.String filename
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   45     0           this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0   45     1       filename  Ljava/lang/String;
            0   45     2         offset  J
            0   45     4         length  J
            0   45     6  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            5   40     8           file  Ljava/io/File;
            8    9     9            ctx  Lio/vertx/core/impl/ContextInternal;
           14   40     9  contentLength  J
           17   19    11    contentType  Ljava/lang/String;
           24   25    11  channelFuture  Lio/netty/channel/ChannelFuture;
           37   40    11  channelFuture  Lio/netty/channel/ChannelFuture;
           21   40    12            raf  Ljava/io/RandomAccessFile;
           26   37    13              e  Ljava/io/IOException;
           32   33    14            ctx  Lio/vertx/core/impl/ContextInternal;
           39   40    13            ctx  Lio/vertx/core/impl/ContextInternal;
      Exception table:
        from    to  target  type
          21    24      25  Class java.io.IOException
          26    28      29  Class java.io.IOException
           1    12      42  any
          13    36      42  any
          37    41      42  any
          42    43      42  any
    Signature: (Ljava/lang/String;JJLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
               Name  Flags
      filename       
      offset         
      length         
      resultHandler  

  private void closeConnAfterWrite();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 561
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.channelFuture:()Lio/netty/channel/ChannelPromise;
            astore 1 /* channelFuture */
        start local 1 // io.netty.channel.ChannelPromise channelFuture
         1: .line 562
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            aload 1 /* channelFuture */
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.writeToChannel:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
         2: .line 563
            aload 1 /* channelFuture */
            aload 0 /* this */
            invokedynamic operationComplete(Lio/vertx/core/http/impl/HttpServerResponseImpl;)Lio/netty/util/concurrent/GenericFutureListener;
              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:
                  (Lio/netty/util/concurrent/Future;)V
                  io/vertx/core/http/impl/HttpServerResponseImpl.lambda$7(Lio/netty/util/concurrent/Future;)V (7)
                  (Lio/netty/util/concurrent/Future;)V
            invokeinterface io.netty.channel.ChannelPromise.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelPromise;
            pop
         3: .line 564
            return
        end local 1 // io.netty.channel.ChannelPromise channelFuture
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            1    4     1  channelFuture  Lio/netty/channel/ChannelPromise;

  void handleDrained();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 567
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 568
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.drainHandler:Lio/vertx/core/Handler;
            ifnull 3
         2: .line 569
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.drainHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 567
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 1
            monitorexit
         4: goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: aload 1
            monitorexit
         6: athrow
         7: .line 572
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  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.HttpServerResponseImpl this
        start local 1 // java.lang.Throwable t
         0: .line 575
            aload 1 /* t */
            getstatic io.vertx.core.http.impl.Http1xServerConnection.CLOSED_EXCEPTION:Lio/vertx/core/VertxException;
            if_acmpne 3
         1: .line 576
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.handleClosed:()V
         2: .line 577
            goto 11
         3: .line 579
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         4: .line 580
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.exceptionHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         5: .line 579
            aload 3
            monitorexit
         6: goto 9
        end local 2 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.Throwable top io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
         7: aload 3
            monitorexit
         8: athrow
        start local 2 // io.vertx.core.Handler handler
         9: .line 582
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl java.lang.Throwable io.vertx.core.Handler
      StackMap stack:
            aload 2 /* handler */
            ifnull 11
        10: .line 583
            aload 2 /* handler */
            aload 1 /* t */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 2 // io.vertx.core.Handler handler
        11: .line 586
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0   12     1        t  Ljava/lang/Throwable;
            5    7     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
            9   11     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
      Exception table:
        from    to  target  type
           4     6       7  any
           7     8       7  any
    MethodParameters:
      Name  Flags
      t     

  private void handleClosed();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 592
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 4
            monitorenter
         1: .line 593
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.closed:Z
            ifeq 4
         2: .line 594
            aload 4
            monitorexit
         3: return
         4: .line 596
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl top top top io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.closed:Z
         5: .line 597
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.written:Z
            ifeq 6
            aconst_null
            goto 7
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.exceptionHandler:Lio/vertx/core/Handler;
      StackMap locals:
      StackMap stack: io.vertx.core.Handler
         7: astore 3 /* exceptionHandler */
        start local 3 // io.vertx.core.Handler exceptionHandler
         8: .line 598
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.written:Z
            ifeq 9
            aconst_null
            goto 10
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl top top io.vertx.core.Handler io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
         9: aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.endHandler:Lio/vertx/core/Handler;
      StackMap locals:
      StackMap stack: io.vertx.core.Handler
        10: astore 2 /* endHandler */
        start local 2 // io.vertx.core.Handler endHandler
        11: .line 599
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.closeHandler:Lio/vertx/core/Handler;
            astore 1 /* closedHandler */
        start local 1 // io.vertx.core.Handler closedHandler
        12: .line 592
            aload 4
            monitorexit
        13: goto 16
        end local 3 // io.vertx.core.Handler exceptionHandler
        end local 2 // io.vertx.core.Handler endHandler
        end local 1 // io.vertx.core.Handler closedHandler
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl top top top io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
        14: aload 4
            monitorexit
        15: athrow
        start local 1 // io.vertx.core.Handler closedHandler
        start local 2 // io.vertx.core.Handler endHandler
        start local 3 // io.vertx.core.Handler exceptionHandler
        16: .line 601
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.Handler io.vertx.core.Handler io.vertx.core.Handler
      StackMap stack:
            aload 3 /* exceptionHandler */
            ifnull 18
        17: .line 602
            aload 3 /* exceptionHandler */
            getstatic io.vertx.core.net.impl.ConnectionBase.CLOSED_EXCEPTION:Lio/vertx/core/VertxException;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        18: .line 604
      StackMap locals:
      StackMap stack:
            aload 2 /* endHandler */
            ifnull 20
        19: .line 605
            aload 2 /* endHandler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        20: .line 607
      StackMap locals:
      StackMap stack:
            aload 1 /* closedHandler */
            ifnull 22
        21: .line 608
            aload 1 /* closedHandler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        22: .line 610
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.Handler exceptionHandler
        end local 2 // io.vertx.core.Handler endHandler
        end local 1 // io.vertx.core.Handler closedHandler
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   23     0              this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
           12   14     1     closedHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           16   23     1     closedHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           11   14     2        endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           16   23     2        endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            8   14     3  exceptionHandler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
           16   23     3  exceptionHandler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
      Exception table:
        from    to  target  type
           1     3      14  any
           4    13      14  any
          14    15      14  any

  private void checkValid();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 613
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.written:Z
            ifeq 2
         1: .line 614
            new java.lang.IllegalStateException
            dup
            ldc "Response has already been written"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 616
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.closed:Z
            ifeq 4
         3: .line 617
            new java.lang.IllegalStateException
            dup
            ldc "Response is closed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 619
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;

  private void prepareHeaders(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // long contentLength
         0: .line 622
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
            getstatic io.netty.handler.codec.http.HttpVersion.HTTP_1_0:Lio/netty/handler/codec/http/HttpVersion;
            if_acmpne 3
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.keepAlive:Z
            ifeq 3
         1: .line 623
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.CONNECTION:Ljava/lang/CharSequence;
            getstatic io.vertx.core.http.HttpHeaders.KEEP_ALIVE:Ljava/lang/CharSequence;
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            pop
         2: .line 624
            goto 5
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
            getstatic io.netty.handler.codec.http.HttpVersion.HTTP_1_1:Lio/netty/handler/codec/http/HttpVersion;
            if_acmpne 5
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.keepAlive:Z
            ifne 5
         4: .line 625
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.CONNECTION:Ljava/lang/CharSequence;
            getstatic io.vertx.core.http.HttpHeaders.CLOSE:Ljava/lang/CharSequence;
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            pop
         5: .line 627
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.head:Z
            ifne 6
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            getstatic io.netty.handler.codec.http.HttpResponseStatus.NOT_MODIFIED:Lio/netty/handler/codec/http/HttpResponseStatus;
            if_acmpne 8
         6: .line 631
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.TRANSFER_ENCODING:Ljava/lang/CharSequence;
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.remove:(Ljava/lang/CharSequence;)Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            pop
         7: .line 632
            goto 13
         8: .line 634
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.TRANSFER_ENCODING:Ljava/lang/CharSequence;
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.contains:(Ljava/lang/CharSequence;)Z
            ifne 13
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.CONTENT_LENGTH:Ljava/lang/CharSequence;
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.contains:(Ljava/lang/CharSequence;)Z
            ifne 13
            lload 1 /* contentLength */
            lconst_0
            lcmp
            iflt 13
         9: .line 635
            lload 1 /* contentLength */
            lconst_0
            lcmp
            ifne 10
            ldc "0"
            goto 11
      StackMap locals:
      StackMap stack:
        10: lload 1 /* contentLength */
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
        11: astore 3 /* value */
        start local 3 // java.lang.String value
        12: .line 636
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.CONTENT_LENGTH:Ljava/lang/CharSequence;
            aload 3 /* value */
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            pop
        end local 3 // java.lang.String value
        13: .line 639
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headersEndHandler:Lio/vertx/core/Handler;
            ifnull 15
        14: .line 640
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headersEndHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        15: .line 642
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.spi.metrics.Metrics.METRICS_ENABLED:Z
            ifeq 17
        16: .line 643
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.reportResponseBegin:()V
        17: .line 645
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.headWritten:Z
        18: .line 646
            return
        end local 1 // long contentLength
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   19     0           this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0   19     1  contentLength  J
           12   13     3          value  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      contentLength  

  private void reportResponseBegin();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 649
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getfield io.vertx.core.http.impl.Http1xServerConnection.metrics:Lio/vertx/core/spi/metrics/HttpServerMetrics;
            ifnull 2
         1: .line 650
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getfield io.vertx.core.http.impl.Http1xServerConnection.metrics:Lio/vertx/core/spi/metrics/HttpServerMetrics;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.requestMetric:Ljava/lang/Object;
            aload 0 /* this */
            invokeinterface io.vertx.core.spi.metrics.HttpServerMetrics.responseBegin:(Ljava/lang/Object;Lio/vertx/core/http/HttpServerResponse;)V
         2: .line 652
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;

  private io.vertx.core.http.impl.HttpServerResponseImpl write(io.netty.buffer.ByteBuf, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.netty.buffer.ByteBuf chunk
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 655
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 656
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.written:Z
            ifeq 3
         2: .line 657
            new java.lang.IllegalStateException
            dup
            ldc "Response has already been written"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 659
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headWritten:Z
            ifne 6
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.TRANSFER_ENCODING:Ljava/lang/CharSequence;
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.contains:(Ljava/lang/CharSequence;)Z
            ifne 6
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            getstatic io.vertx.core.http.HttpHeaders.CONTENT_LENGTH:Ljava/lang/CharSequence;
            invokevirtual io.vertx.core.http.impl.headers.VertxHttpHeaders.contains:(Ljava/lang/CharSequence;)Z
            ifne 6
         4: .line 660
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
            getstatic io.netty.handler.codec.http.HttpVersion.HTTP_1_0:Lio/netty/handler/codec/http/HttpVersion;
            if_acmpeq 6
         5: .line 661
            new java.lang.IllegalStateException
            dup
            ldc "You must set the Content-Length header to be the total size of the message body BEFORE sending any data if you are not using HTTP chunked encoding."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 665
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.bytesWritten:J
            aload 1 /* chunk */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            i2l
            ladd
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.bytesWritten:J
         7: .line 667
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headWritten:Z
            ifne 11
         8: .line 668
            aload 0 /* this */
            ldc -1
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.prepareHeaders:(J)V
         9: .line 669
            new io.vertx.core.http.impl.AssembledHttpResponse
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.head:Z
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            aload 1 /* chunk */
            invokespecial io.vertx.core.http.impl.AssembledHttpResponse.<init>:(ZLio/netty/handler/codec/http/HttpVersion;Lio/netty/handler/codec/http/HttpResponseStatus;Lio/netty/handler/codec/http/HttpHeaders;Lio/netty/buffer/ByteBuf;)V
            astore 4 /* msg */
        start local 4 // io.netty.handler.codec.http.HttpObject msg
        10: .line 670
            goto 12
        end local 4 // io.netty.handler.codec.http.HttpObject msg
        11: .line 671
      StackMap locals:
      StackMap stack:
            new io.netty.handler.codec.http.DefaultHttpContent
            dup
            aload 1 /* chunk */
            invokespecial io.netty.handler.codec.http.DefaultHttpContent.<init>:(Lio/netty/buffer/ByteBuf;)V
            astore 4 /* msg */
        start local 4 // io.netty.handler.codec.http.HttpObject msg
        12: .line 673
      StackMap locals: io.netty.handler.codec.http.HttpObject
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            aload 4 /* msg */
            aload 2 /* promise */
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.writeToChannel:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
        13: .line 674
            aload 0 /* this */
            aload 3
            monitorexit
        14: areturn
        end local 4 // io.netty.handler.codec.http.HttpObject msg
        15: .line 655
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.netty.buffer.ByteBuf io.netty.channel.ChannelPromise io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
        16: athrow
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // io.netty.buffer.ByteBuf chunk
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   17     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0   17     1    chunk  Lio/netty/buffer/ByteBuf;
            0   17     2  promise  Lio/netty/channel/ChannelPromise;
           10   11     4      msg  Lio/netty/handler/codec/http/HttpObject;
           12   15     4      msg  Lio/netty/handler/codec/http/HttpObject;
      Exception table:
        from    to  target  type
           1    14      15  any
          15    16      15  any
    MethodParameters:
         Name  Flags
      chunk    
      promise  

  io.vertx.core.net.NetSocket netSocket(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetSocket;
    flags: (0x0000) 
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // boolean isConnect
         0: .line 679
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.checkValid:()V
         1: .line 680
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.netSocket:Lio/vertx/core/net/NetSocket;
            ifnonnull 10
         2: .line 681
            iload 1 /* isConnect */
            ifeq 8
         3: .line 682
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headWritten:Z
            ifeq 5
         4: .line 683
            new java.lang.IllegalStateException
            dup
            ldc "Response for CONNECT already sent"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 685
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic io.netty.handler.codec.http.HttpResponseStatus.OK:Lio/netty/handler/codec/http/HttpResponseStatus;
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
         6: .line 686
            aload 0 /* this */
            ldc -1
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.prepareHeaders:(J)V
         7: .line 687
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            new io.vertx.core.http.impl.AssembledHttpResponse
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.head:Z
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.version:Lio/netty/handler/codec/http/HttpVersion;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.headers:Lio/vertx/core/http/impl/headers/VertxHttpHeaders;
            invokespecial io.vertx.core.http.impl.AssembledHttpResponse.<init>:(ZLio/netty/handler/codec/http/HttpVersion;Lio/netty/handler/codec/http/HttpResponseStatus;Lio/netty/handler/codec/http/HttpHeaders;)V
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.writeToChannel:(Ljava/lang/Object;)V
         8: .line 689
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.written:Z
         9: .line 690
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.createNetSocket:()Lio/vertx/core/net/NetSocket;
            putfield io.vertx.core.http.impl.HttpServerResponseImpl.netSocket:Lio/vertx/core/net/NetSocket;
        10: .line 692
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.netSocket:Lio/vertx/core/net/NetSocket;
            areturn
        end local 1 // boolean isConnect
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0   11     1  isConnect  Z
    MethodParameters:
           Name  Flags
      isConnect  

  public int streamId();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
         0: .line 697
            iconst_m1
            ireturn
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;

  public void reset(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // long code
         0: .line 702
            return
        end local 1 // long code
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1  code  J
    MethodParameters:
      Name  Flags
      code  

  public io.vertx.core.http.HttpServerResponse push(io.vertx.core.http.HttpMethod, java.lang.String, io.vertx.core.MultiMap, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.http.HttpServerResponse>>);
    descriptor: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/MultiMap;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.http.HttpMethod method
        start local 2 // java.lang.String path
        start local 3 // io.vertx.core.MultiMap headers
        start local 4 // io.vertx.core.Handler handler
         0: .line 706
            aload 0 /* this */
            aload 1 /* method */
            aconst_null
            aload 2 /* path */
            aload 3 /* headers */
            aload 4 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.push:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/MultiMap;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
            areturn
        end local 4 // io.vertx.core.Handler handler
        end local 3 // io.vertx.core.MultiMap headers
        end local 2 // java.lang.String path
        end local 1 // io.vertx.core.http.HttpMethod method
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1   method  Lio/vertx/core/http/HttpMethod;
            0    1     2     path  Ljava/lang/String;
            0    1     3  headers  Lio/vertx/core/MultiMap;
            0    1     4  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServerResponse;>;>;
    Signature: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/MultiMap;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServerResponse;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      method   
      path     
      headers  
      handler  

  public io.vertx.core.http.HttpServerResponse push(io.vertx.core.http.HttpMethod, java.lang.String, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.http.HttpServerResponse>>);
    descriptor: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.http.HttpMethod method
        start local 2 // java.lang.String host
        start local 3 // java.lang.String path
        start local 4 // io.vertx.core.Handler handler
         0: .line 711
            aload 0 /* this */
            aload 1 /* method */
            aload 3 /* path */
            aload 4 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.push:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
            areturn
        end local 4 // io.vertx.core.Handler handler
        end local 3 // java.lang.String path
        end local 2 // java.lang.String host
        end local 1 // io.vertx.core.http.HttpMethod method
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1   method  Lio/vertx/core/http/HttpMethod;
            0    1     2     host  Ljava/lang/String;
            0    1     3     path  Ljava/lang/String;
            0    1     4  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServerResponse;>;>;
    Signature: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServerResponse;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      method   
      host     
      path     
      handler  

  public io.vertx.core.http.HttpServerResponse push(io.vertx.core.http.HttpMethod, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.http.HttpServerResponse>>);
    descriptor: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.http.HttpMethod method
        start local 2 // java.lang.String path
        start local 3 // io.vertx.core.Handler handler
         0: .line 716
            aload 0 /* this */
            aload 1 /* method */
            aload 2 /* path */
            aconst_null
            aconst_null
            aload 3 /* handler */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.push:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/MultiMap;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
            areturn
        end local 3 // io.vertx.core.Handler handler
        end local 2 // java.lang.String path
        end local 1 // io.vertx.core.http.HttpMethod method
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1   method  Lio/vertx/core/http/HttpMethod;
            0    1     2     path  Ljava/lang/String;
            0    1     3  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServerResponse;>;>;
    Signature: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServerResponse;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      method   
      path     
      handler  

  public io.vertx.core.http.HttpServerResponse push(io.vertx.core.http.HttpMethod, java.lang.String, java.lang.String, io.vertx.core.MultiMap, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.http.HttpServerResponse>>);
    descriptor: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/MultiMap;Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.vertx.core.http.HttpMethod method
        start local 2 // java.lang.String host
        start local 3 // java.lang.String path
        start local 4 // io.vertx.core.MultiMap headers
        start local 5 // io.vertx.core.Handler handler
         0: .line 721
            aload 5 /* handler */
            ldc "Push promise is only supported with HTTP2"
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 722
            aload 0 /* this */
            areturn
        end local 5 // io.vertx.core.Handler handler
        end local 4 // io.vertx.core.MultiMap headers
        end local 3 // java.lang.String path
        end local 2 // java.lang.String host
        end local 1 // io.vertx.core.http.HttpMethod method
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    2     1   method  Lio/vertx/core/http/HttpMethod;
            0    2     2     host  Ljava/lang/String;
            0    2     3     path  Ljava/lang/String;
            0    2     4  headers  Lio/vertx/core/MultiMap;
            0    2     5  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServerResponse;>;>;
    Signature: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/MultiMap;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServerResponse;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      method   
      host     
      path     
      headers  
      handler  

  public io.vertx.core.http.HttpServerResponse writeCustomFrame(int, int, io.vertx.core.buffer.Buffer);
    descriptor: (IILio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // int type
        start local 2 // int flags
        start local 3 // io.vertx.core.buffer.Buffer payload
         0: .line 727
            aload 0 /* this */
            areturn
        end local 3 // io.vertx.core.buffer.Buffer payload
        end local 2 // int flags
        end local 1 // int type
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1     type  I
            0    1     2    flags  I
            0    1     3  payload  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
         Name  Flags
      type     
      flags    
      payload  

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

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

  public io.vertx.core.http.HttpServerResponse putTrailer(java.lang.String, java.lang.Iterable);
    descriptor: (Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.putTrailer:(Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerResponse putTrailer(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.putTrailer:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerResponse write(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
    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.HttpServerResponseImpl.write:(Ljava/lang/String;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public io.vertx.core.streams.WriteStream write(java.lang.Object);
    descriptor: (Ljava/lang/Object;)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
            checkcast io.vertx.core.buffer.Buffer
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.write:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerResponse write(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/HttpServerResponse;
    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.HttpServerResponseImpl.write:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public io.vertx.core.http.HttpServerResponse putHeader(java.lang.String, java.lang.Iterable);
    descriptor: (Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.putHeader:(Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerResponse putHeader(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerResponse setChunked(boolean);
    descriptor: (Z)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.setChunked:(Z)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            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.HttpServerResponseImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
            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.HttpServerResponseImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerResponse sendFile(java.lang.String, long, long);
    descriptor: (Ljava/lang/String;JJ)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=6, locals=6, args_size=4
         0: .line 1
            aload 0
            aload 1
            lload 2
            lload 4
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.sendFile:(Ljava/lang/String;JJ)Lio/vertx/core/http/impl/HttpServerResponseImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  private void lambda$0(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // java.lang.Void v
         0: .line 250
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.handleInterestedOpsChanged:()V
            return
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1     v  Ljava/lang/Void;

  private static void lambda$1(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 478
            aload 0
            new java.io.FileNotFoundException
            dup
            invokespecial java.io.FileNotFoundException.<init>:()V
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;

  private static void lambda$2(io.vertx.core.Handler, java.io.IOException, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/io/IOException;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // java.lang.Void v
         0: .line 510
            aload 0
            aload 1
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 2 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     2     v  Ljava/lang/Void;

  private void lambda$3(io.vertx.core.Handler, io.vertx.core.impl.ContextInternal, io.netty.util.concurrent.Future);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/impl/ContextInternal;Lio/netty/util/concurrent/Future;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 3 // io.netty.util.concurrent.Future future
         0: .line 522
            aload 3 /* future */
            invokeinterface io.netty.util.concurrent.Future.isSuccess:()Z
            ifeq 5
         1: .line 523
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.channelHandlerContext:()Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.newPromise:()Lio/netty/channel/ChannelPromise;
            astore 4 /* pr */
        start local 4 // io.netty.channel.ChannelPromise pr
         2: .line 524
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getstatic io.netty.handler.codec.http.LastHttpContent.EMPTY_LAST_CONTENT:Lio/netty/handler/codec/http/LastHttpContent;
            aload 4 /* pr */
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.writeToChannel:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
         3: .line 525
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.keepAlive:Z
            ifne 5
         4: .line 526
            aload 4 /* pr */
            aload 0 /* this */
            invokedynamic operationComplete(Lio/vertx/core/http/impl/HttpServerResponseImpl;)Lio/netty/util/concurrent/GenericFutureListener;
              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:
                  (Lio/netty/util/concurrent/Future;)V
                  io/vertx/core/http/impl/HttpServerResponseImpl.lambda$4(Lio/netty/util/concurrent/Future;)V (7)
                  (Lio/netty/util/concurrent/Future;)V
            invokeinterface io.netty.channel.ChannelPromise.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelPromise;
            pop
        end local 4 // io.netty.channel.ChannelPromise pr
         5: .line 533
      StackMap locals:
      StackMap stack:
            aload 1
            ifnull 11
         6: .line 535
            aload 3 /* future */
            invokeinterface io.netty.util.concurrent.Future.isSuccess:()Z
            ifeq 9
         7: .line 536
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            astore 4 /* res */
        start local 4 // io.vertx.core.AsyncResult res
         8: .line 537
            goto 10
        end local 4 // io.vertx.core.AsyncResult res
         9: .line 538
      StackMap locals:
      StackMap stack:
            aload 3 /* future */
            invokeinterface io.netty.util.concurrent.Future.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            astore 4 /* res */
        start local 4 // io.vertx.core.AsyncResult res
        10: .line 540
      StackMap locals: io.vertx.core.AsyncResult
      StackMap stack:
            aload 2
            aload 1
            aload 4 /* res */
            invokedynamic handle(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)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/HttpServerResponseImpl.lambda$5(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.executeFromIO:(Lio/vertx/core/Handler;)V
        end local 4 // io.vertx.core.AsyncResult res
        11: .line 545
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 5
            monitorenter
        12: .line 546
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.bodyEndHandler:Lio/vertx/core/Handler;
            astore 4 /* handler */
        start local 4 // io.vertx.core.Handler handler
        13: .line 545
            aload 5
            monitorexit
        14: goto 17
        end local 4 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.Handler io.vertx.core.impl.ContextInternal io.netty.util.concurrent.Future top io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
        15: aload 5
            monitorexit
        16: athrow
        start local 4 // io.vertx.core.Handler handler
        17: .line 548
      StackMap locals: io.vertx.core.http.impl.HttpServerResponseImpl io.vertx.core.Handler io.vertx.core.impl.ContextInternal io.netty.util.concurrent.Future io.vertx.core.Handler
      StackMap stack:
            aload 4 /* handler */
            ifnull 19
        18: .line 549
            aload 2
            aload 4 /* handler */
            invokedynamic handle(Lio/vertx/core/Handler;)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/HttpServerResponseImpl.lambda$6(Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.executeFromIO:(Lio/vertx/core/Handler;)V
        19: .line 555
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.responseComplete:()V
        end local 4 // io.vertx.core.Handler handler
        20: .line 556
            return
        end local 3 // io.netty.util.concurrent.Future future
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   21     0     this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0   21     3   future  Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;
            2    5     4       pr  Lio/netty/channel/ChannelPromise;
            8    9     4      res  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
           10   11     4      res  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
           13   15     4  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           17   20     4  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
          12    14      15  any
          15    16      15  any
    Exceptions:
      throws java.lang.Exception

  private void lambda$7(io.netty.util.concurrent.Future);
    descriptor: (Lio/netty/util/concurrent/Future;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.netty.util.concurrent.Future fut
         0: .line 563
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpServerResponseImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.close:()V
            return
        end local 1 // io.netty.util.concurrent.Future fut
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    1     1   fut  Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;
    Exceptions:
      throws java.lang.Exception

  private void lambda$4(io.netty.util.concurrent.Future);
    descriptor: (Lio/netty/util/concurrent/Future;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
        start local 1 // io.netty.util.concurrent.Future a
         0: .line 527
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.HttpServerResponseImpl.closeConnAfterWrite:()V
         1: .line 528
            return
        end local 1 // io.netty.util.concurrent.Future a
        end local 0 // io.vertx.core.http.impl.HttpServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/HttpServerResponseImpl;
            0    2     1     a  Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;
    Exceptions:
      throws java.lang.Exception

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

  private static void lambda$6(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 550
            aload 0
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 551
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Void;
}
SourceFile: "HttpServerResponseImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles