public class io.vertx.core.http.impl.Http2ServerResponseImpl 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.Http2ServerResponseImpl
  super_class: java.lang.Object
{
  private static final io.vertx.core.logging.Logger log;
    descriptor: Lio/vertx/core/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

  private final io.netty.channel.ChannelHandlerContext ctx;
    descriptor: Lio/netty/channel/ChannelHandlerContext;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

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

  private io.netty.handler.codec.http2.Http2Headers headers;
    descriptor: Lio/netty/handler/codec/http2/Http2Headers;
    flags: (0x0002) ACC_PRIVATE

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

  private io.netty.handler.codec.http2.Http2Headers trailers;
    descriptor: Lio/netty/handler/codec/http2/Http2Headers;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

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

  private java.lang.String statusMessage;
    descriptor: Ljava/lang/String;
    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> 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 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.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 54
            ldc Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            invokestatic io.vertx.core.logging.LoggerFactory.getLogger:(Ljava/lang/Class;)Lio/vertx/core/logging/Logger;
            putstatic io.vertx.core.http.impl.Http2ServerResponseImpl.log:Lio/vertx/core/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.vertx.core.http.impl.Http2ServerConnection, io.vertx.core.http.impl.Http2ServerStream, io.vertx.core.http.HttpMethod, boolean, java.lang.String, java.lang.String);
    descriptor: (Lio/vertx/core/http/impl/Http2ServerConnection;Lio/vertx/core/http/impl/Http2ServerStream;Lio/vertx/core/http/HttpMethod;ZLjava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=7
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.http.impl.Http2ServerConnection conn
        start local 2 // io.vertx.core.http.impl.Http2ServerStream stream
        start local 3 // io.vertx.core.http.HttpMethod method
        start local 4 // boolean push
        start local 5 // java.lang.String contentEncoding
        start local 6 // java.lang.String host
         0: .line 80
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            new io.netty.handler.codec.http2.DefaultHttp2Headers
            dup
            invokespecial io.netty.handler.codec.http2.DefaultHttp2Headers.<init>:()V
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
         2: .line 70
            aload 0 /* this */
            getstatic io.netty.handler.codec.http.HttpResponseStatus.OK:Lio/netty/handler/codec/http/HttpResponseStatus;
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
         3: .line 86
            aload 0 /* this */
            aload 2 /* stream */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
         4: .line 87
            aload 0 /* this */
            aload 1 /* conn */
            getfield io.vertx.core.http.impl.Http2ServerConnection.handlerContext:Lio/netty/channel/ChannelHandlerContext;
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.ctx:Lio/netty/channel/ChannelHandlerContext;
         5: .line 88
            aload 0 /* this */
            aload 1 /* conn */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
         6: .line 89
            aload 0 /* this */
            aload 3 /* method */
            getstatic io.vertx.core.http.HttpMethod.HEAD:Lio/vertx/core/http/HttpMethod;
            if_acmpne 7
            iconst_1
            goto 8
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.http.impl.Http2ServerConnection io.vertx.core.http.impl.Http2ServerStream io.vertx.core.http.HttpMethod int java.lang.String java.lang.String
      StackMap stack: io.vertx.core.http.impl.Http2ServerResponseImpl
         7: iconst_0
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.http.impl.Http2ServerConnection io.vertx.core.http.impl.Http2ServerStream io.vertx.core.http.HttpMethod int java.lang.String java.lang.String
      StackMap stack: io.vertx.core.http.impl.Http2ServerResponseImpl int
         8: putfield io.vertx.core.http.impl.Http2ServerResponseImpl.head:Z
         9: .line 90
            aload 0 /* this */
            iload 4 /* push */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.push:Z
        10: .line 91
            aload 0 /* this */
            aload 6 /* host */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.host:Ljava/lang/String;
        11: .line 93
            aload 5 /* contentEncoding */
            ifnull 13
        12: .line 94
            aload 0 /* this */
            getstatic io.netty.handler.codec.http.HttpHeaderNames.CONTENT_ENCODING:Lio/netty/util/AsciiString;
            aload 5 /* contentEncoding */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.putHeader:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/HttpServerResponse;
            pop
        13: .line 96
      StackMap locals:
      StackMap stack:
            return
        end local 6 // java.lang.String host
        end local 5 // java.lang.String contentEncoding
        end local 4 // boolean push
        end local 3 // io.vertx.core.http.HttpMethod method
        end local 2 // io.vertx.core.http.impl.Http2ServerStream stream
        end local 1 // io.vertx.core.http.impl.Http2ServerConnection conn
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0   14     1             conn  Lio/vertx/core/http/impl/Http2ServerConnection;
            0   14     2           stream  Lio/vertx/core/http/impl/Http2ServerStream;
            0   14     3           method  Lio/vertx/core/http/HttpMethod;
            0   14     4             push  Z
            0   14     5  contentEncoding  Ljava/lang/String;
            0   14     6             host  Ljava/lang/String;
    MethodParameters:
                 Name  Flags
      conn             
      stream           
      method           
      push             
      contentEncoding  
      host             

  boolean isPush();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 99
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.push:Z
            ireturn
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;

  void handleReset(long);
    descriptor: (J)V
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // long code
         0: .line 103
            aload 0 /* this */
            new io.vertx.core.http.StreamResetException
            dup
            lload 1 /* code */
            invokespecial io.vertx.core.http.StreamResetException.<init>:(J)V
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.handleException:(Ljava/lang/Throwable;)V
         1: .line 104
            return
        end local 1 // long code
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    2     1  code  J
    MethodParameters:
      Name  Flags
      code  

  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.Http2ServerResponseImpl this
        start local 1 // java.lang.Throwable cause
         0: .line 108
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 109
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.exceptionHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         2: .line 108
            aload 3
            monitorexit
         3: goto 6
        end local 2 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.Throwable top io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
         4: aload 3
            monitorexit
         5: athrow
        start local 2 // io.vertx.core.Handler handler
         6: .line 111
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.Throwable io.vertx.core.Handler
      StackMap stack:
            aload 2 /* handler */
            ifnull 8
         7: .line 112
            aload 2 /* handler */
            aload 1 /* cause */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         8: .line 114
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Throwable cause
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    9     1    cause  Ljava/lang/Throwable;
            2    4     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
            6    9     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
       Name  Flags
      cause  

  void handleClose();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 120
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 4
            monitorenter
         1: .line 121
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ended:Z
            ifeq 2
            iconst_0
            goto 3
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl top top top io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
         2: iconst_1
      StackMap locals:
      StackMap stack: int
         3: istore 5 /* failed */
        start local 5 // boolean failed
         4: .line 122
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.closed:Z
         5: .line 123
            iload 5 /* failed */
            ifeq 6
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.exceptionHandler:Lio/vertx/core/Handler;
            goto 7
      StackMap locals: int
      StackMap stack:
         6: aconst_null
      StackMap locals:
      StackMap stack: io.vertx.core.Handler
         7: astore 1 /* exceptionHandler */
        start local 1 // io.vertx.core.Handler exceptionHandler
         8: .line 124
            iload 5 /* failed */
            ifeq 9
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.endHandler:Lio/vertx/core/Handler;
            goto 10
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.Handler top top io.vertx.core.http.impl.Http2ServerConnection int
      StackMap stack:
         9: aconst_null
      StackMap locals:
      StackMap stack: io.vertx.core.Handler
        10: astore 2 /* endHandler */
        start local 2 // io.vertx.core.Handler endHandler
        11: .line 125
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.closeHandler:Lio/vertx/core/Handler;
            astore 3 /* closeHandler */
        end local 5 // boolean failed
        start local 3 // io.vertx.core.Handler closeHandler
        12: .line 120
            aload 4
            monitorexit
        13: goto 16
        end local 3 // io.vertx.core.Handler closeHandler
        end local 2 // io.vertx.core.Handler endHandler
        end local 1 // io.vertx.core.Handler exceptionHandler
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl top top top io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
        14: aload 4
            monitorexit
        15: athrow
        start local 1 // io.vertx.core.Handler exceptionHandler
        start local 2 // io.vertx.core.Handler endHandler
        start local 3 // io.vertx.core.Handler closeHandler
        16: .line 127
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.Handler io.vertx.core.Handler io.vertx.core.Handler
      StackMap stack:
            aload 1 /* exceptionHandler */
            ifnull 18
        17: .line 128
            aload 1 /* 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 130
      StackMap locals:
      StackMap stack:
            aload 2 /* endHandler */
            ifnull 20
        19: .line 131
            aload 2 /* endHandler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        20: .line 133
      StackMap locals:
      StackMap stack:
            aload 3 /* closeHandler */
            ifnull 22
        21: .line 134
            aload 3 /* closeHandler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        22: .line 136
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.Handler closeHandler
        end local 2 // io.vertx.core.Handler endHandler
        end local 1 // io.vertx.core.Handler exceptionHandler
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   23     0              this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            8   14     1  exceptionHandler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
           16   23     1  exceptionHandler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
           11   14     2        endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           16   23     2        endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           12   14     3      closeHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           16   23     3      closeHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            4   12     5            failed  Z
      Exception table:
        from    to  target  type
           1    13      14  any
          14    15      14  any

  private void checkHeadWritten();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 139
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headWritten:Z
            ifeq 2
         1: .line 140
            new java.lang.IllegalStateException
            dup
            ldc "Header already sent"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 142
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;

  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.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 146
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 147
            aload 1 /* handler */
            ifnull 3
         2: .line 148
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         3: .line 150
      StackMap locals: io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.exceptionHandler:Lio/vertx/core/Handler;
         4: .line 151
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 146
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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 int getStatusCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 157
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 158
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.code:()I
            aload 1
            monitorexit
         2: ireturn
         3: .line 157
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public io.vertx.core.http.HttpServerResponse setStatusCode(int);
    descriptor: (I)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.Http2ServerResponseImpl this
        start local 1 // int statusCode
         0: .line 164
            iload 1 /* statusCode */
            ifge 2
         1: .line 165
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "code: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* statusCode */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " (expected: 0+)"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 2
            monitorenter
         3: .line 168
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkHeadWritten:()V
         4: .line 169
            aload 0 /* this */
            iload 1 /* statusCode */
            invokestatic io.netty.handler.codec.http.HttpResponseStatus.valueOf:(I)Lio/netty/handler/codec/http/HttpResponseStatus;
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
         5: .line 170
            aload 0 /* this */
            aload 2
            monitorexit
         6: areturn
         7: .line 167
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl int io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         8: athrow
        end local 1 // int statusCode
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    9     1  statusCode  I
      Exception table:
        from    to  target  type
           3     6       7  any
           7     8       7  any
    MethodParameters:
            Name  Flags
      statusCode  

  public java.lang.String getStatusMessage();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 176
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 177
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.statusMessage:Ljava/lang/String;
            ifnonnull 4
         2: .line 178
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.reasonPhrase:()Ljava/lang/String;
            aload 1
            monitorexit
         3: areturn
         4: .line 180
      StackMap locals: io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.statusMessage:Ljava/lang/String;
            aload 1
            monitorexit
         5: areturn
         6: .line 176
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         7: athrow
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
      Exception table:
        from    to  target  type
           1     3       6  any
           4     5       6  any
           6     7       6  any

  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=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // java.lang.String statusMessage
         0: .line 186
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 187
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkHeadWritten:()V
         2: .line 188
            aload 0 /* this */
            aload 1 /* statusMessage */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.statusMessage:Ljava/lang/String;
         3: .line 189
            aload 0 /* this */
            aload 2
            monitorexit
         4: areturn
         5: .line 186
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.String io.vertx.core.http.impl.Http2ServerConnection
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.HttpServerResponse setChunked(boolean);
    descriptor: (Z)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.Http2ServerResponseImpl this
        start local 1 // boolean chunked
         0: .line 195
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 196
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkHeadWritten:()V
         2: .line 197
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.chunked:Z
         3: .line 198
            aload 0 /* this */
            aload 2
            monitorexit
         4: areturn
         5: .line 195
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl int io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // boolean chunked
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    7     1  chunked  Z
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
         Name  Flags
      chunked  

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

  public io.vertx.core.MultiMap headers();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 211
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 212
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headersMap:Lio/vertx/core/http/impl/Http2HeadersAdaptor;
            ifnonnull 3
         2: .line 213
            aload 0 /* this */
            new io.vertx.core.http.impl.Http2HeadersAdaptor
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            invokespecial io.vertx.core.http.impl.Http2HeadersAdaptor.<init>:(Lio/netty/handler/codec/http2/Http2Headers;)V
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.headersMap:Lio/vertx/core/http/impl/Http2HeadersAdaptor;
         3: .line 215
      StackMap locals: io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headersMap:Lio/vertx/core/http/impl/Http2HeadersAdaptor;
            aload 1
            monitorexit
         4: areturn
         5: .line 211
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         6: athrow
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  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: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 221
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 222
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkHeadWritten:()V
         2: .line 223
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         3: .line 224
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 221
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.String java.lang.String io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    7     1   name  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
      name   
      value  

  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.Http2ServerResponseImpl this
        start local 1 // java.lang.CharSequence name
        start local 2 // java.lang.CharSequence value
         0: .line 230
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 231
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkHeadWritten:()V
         2: .line 232
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/MultiMap;
            pop
         3: .line 233
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 230
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.CharSequence java.lang.CharSequence io.vertx.core.http.impl.Http2ServerConnection
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.String, java.lang.Iterable<java.lang.String>);
    descriptor: (Ljava/lang/String;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.Http2ServerResponseImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Iterable values
         0: .line 239
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 240
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkHeadWritten:()V
         2: .line 241
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* values */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/MultiMap;
            pop
         3: .line 242
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 239
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.String java.lang.Iterable io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.Iterable values
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    7     1    name  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/HttpServerResponse;
    MethodParameters:
        Name  Flags
      name    
      values  

  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.Http2ServerResponseImpl this
        start local 1 // java.lang.CharSequence name
        start local 2 // java.lang.Iterable values
         0: .line 248
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 249
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkHeadWritten:()V
         2: .line 250
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* values */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/CharSequence;Ljava/lang/Iterable;)Lio/vertx/core/MultiMap;
            pop
         3: .line 251
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 248
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.CharSequence java.lang.Iterable io.vertx.core.http.impl.Http2ServerConnection
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.MultiMap trailers();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 257
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 258
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.trailedMap:Lio/vertx/core/http/impl/Http2HeadersAdaptor;
            ifnonnull 3
         2: .line 259
            aload 0 /* this */
            new io.vertx.core.http.impl.Http2HeadersAdaptor
            dup
            aload 0 /* this */
            new io.netty.handler.codec.http2.DefaultHttp2Headers
            dup
            invokespecial io.netty.handler.codec.http2.DefaultHttp2Headers.<init>:()V
            dup_x1
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.trailers:Lio/netty/handler/codec/http2/Http2Headers;
            invokespecial io.vertx.core.http.impl.Http2HeadersAdaptor.<init>:(Lio/netty/handler/codec/http2/Http2Headers;)V
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.trailedMap:Lio/vertx/core/http/impl/Http2HeadersAdaptor;
         3: .line 261
      StackMap locals: io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.trailedMap:Lio/vertx/core/http/impl/Http2HeadersAdaptor;
            aload 1
            monitorexit
         4: areturn
         5: .line 257
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         6: athrow
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  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: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 267
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 268
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         2: .line 269
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.trailers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         3: .line 270
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 267
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.String java.lang.String io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    7     1   name  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
      name   
      value  

  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.Http2ServerResponseImpl this
        start local 1 // java.lang.CharSequence name
        start local 2 // java.lang.CharSequence value
         0: .line 276
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 277
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         2: .line 278
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.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 279
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 276
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.CharSequence java.lang.CharSequence io.vertx.core.http.impl.Http2ServerConnection
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.String, java.lang.Iterable<java.lang.String>);
    descriptor: (Ljava/lang/String;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.Http2ServerResponseImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Iterable values
         0: .line 285
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 286
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         2: .line 287
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.trailers:()Lio/vertx/core/MultiMap;
            aload 1 /* name */
            aload 2 /* values */
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/MultiMap;
            pop
         3: .line 288
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 285
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.String java.lang.Iterable io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.Iterable values
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    7     1    name  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/HttpServerResponse;
    MethodParameters:
        Name  Flags
      name    
      values  

  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.Http2ServerResponseImpl this
        start local 1 // java.lang.CharSequence name
        start local 2 // java.lang.Iterable value
         0: .line 294
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 295
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         2: .line 296
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.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 297
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 294
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.CharSequence java.lang.Iterable io.vertx.core.http.impl.Http2ServerConnection
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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 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.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 303
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 304
            aload 1 /* handler */
            ifnull 3
         2: .line 305
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         3: .line 307
      StackMap locals: io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.closeHandler:Lio/vertx/core/Handler;
         4: .line 308
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 303
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 314
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 315
            aload 1 /* handler */
            ifnull 3
         2: .line 316
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         3: .line 318
      StackMap locals: io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.endHandler:Lio/vertx/core/Handler;
         4: .line 319
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 314
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.HttpServerResponse writeContinue();
    descriptor: ()Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 325
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 326
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkHeadWritten:()V
         2: .line 327
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            new io.netty.handler.codec.http2.DefaultHttp2Headers
            dup
            invokespecial io.netty.handler.codec.http2.DefaultHttp2Headers.<init>:()V
            ldc "100"
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2Headers.status:(Ljava/lang/CharSequence;)Lio/netty/handler/codec/http2/Http2Headers;
            iconst_0
            aconst_null
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.writeHeaders:(Lio/netty/handler/codec/http2/Http2Headers;ZLio/vertx/core/Handler;)V
         3: .line 328
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.flush:()Lio/netty/channel/ChannelHandlerContext;
            pop
         4: .line 329
            aload 0 /* this */
            aload 1
            monitorexit
         5: areturn
         6: .line 325
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         7: athrow
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any

  public io.vertx.core.http.HttpServerResponse write(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
         0: .line 335
            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 336
            aload 0 /* this */
            aload 2 /* buf */
            iconst_0
            aconst_null
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         2: .line 337
            aload 0 /* this */
            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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    3     1  chunk  Lio/vertx/core/buffer/Buffer;
            1    3     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=4, args_size=3
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 342
            aload 1 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            astore 3 /* buf */
        start local 3 // io.netty.buffer.ByteBuf buf
         1: .line 343
            aload 0 /* this */
            aload 3 /* buf */
            iconst_0
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         2: .line 344
            aload 0 /* this */
            areturn
        end local 3 // io.netty.buffer.ByteBuf buf
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    3     1    chunk  Lio/vertx/core/buffer/Buffer;
            0    3     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            1    3     3      buf  Lio/netty/buffer/ByteBuf;
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      chunk    
      handler  

  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: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // java.lang.String chunk
        start local 2 // java.lang.String enc
         0: .line 349
            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;
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;)Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            areturn
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.Http2ServerResponseImpl 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 354
            aload 0 /* this */
            aload 1 /* chunk */
            aload 2 /* enc */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            iconst_0
            aload 3 /* handler */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         1: .line 355
            aload 0 /* this */
            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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      chunk    
      enc      
      handler  

  public io.vertx.core.http.HttpServerResponse write(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // java.lang.String chunk
         0: .line 360
            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;
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;)Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            areturn
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.Http2ServerResponseImpl this
        start local 1 // java.lang.String chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 365
            aload 0 /* this */
            aload 1 /* chunk */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            iconst_0
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         1: .line 366
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
         Name  Flags
      chunk    
      handler  

  private io.vertx.core.http.impl.Http2ServerResponseImpl write(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)Lio/vertx/core/http/impl/Http2ServerResponseImpl;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // io.netty.buffer.ByteBuf chunk
         0: .line 370
            aload 0 /* this */
            aload 1 /* chunk */
            iconst_0
            aconst_null
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.write:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
         1: .line 371
            aload 0 /* this */
            areturn
        end local 1 // io.netty.buffer.ByteBuf chunk
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    2     1  chunk  Lio/netty/buffer/ByteBuf;
    MethodParameters:
       Name  Flags
      chunk  

  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.Http2ServerResponseImpl this
        start local 1 // java.lang.String chunk
         0: .line 376
            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.Http2ServerResponseImpl.end:(Lio/vertx/core/buffer/Buffer;)V
         1: .line 377
            return
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.Http2ServerResponseImpl this
        start local 1 // java.lang.String chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 381
            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.Http2ServerResponseImpl.end:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
         1: .line 382
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.Http2ServerResponseImpl this
        start local 1 // java.lang.String chunk
        start local 2 // java.lang.String enc
         0: .line 386
            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.Http2ServerResponseImpl.end:(Lio/vertx/core/buffer/Buffer;)V
         1: .line 387
            return
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String chunk
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.Http2ServerResponseImpl 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 391
            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.Http2ServerResponseImpl.end:(Lio/vertx/core/buffer/Buffer;)V
         1: .line 392
            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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
         0: .line 396
            aload 0 /* this */
            aload 1 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            aconst_null
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.end:(Lio/netty/buffer/ByteBuf;Lio/vertx/core/Handler;)V
         1: .line 397
            return
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.buffer.Buffer chunk
        start local 2 // io.vertx.core.Handler handler
         0: .line 401
            aload 0 /* this */
            aload 1 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.end:(Lio/netty/buffer/ByteBuf;Lio/vertx/core/Handler;)V
         1: .line 402
            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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    2     1    chunk  Lio/vertx/core/buffer/Buffer;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      chunk    
      handler  

  public void end();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 406
            aload 0 /* this */
            aconst_null
            aconst_null
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.end:(Lio/netty/buffer/ByteBuf;Lio/vertx/core/Handler;)V
         1: .line 407
            return
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;

  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.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 411
            aload 0 /* this */
            aconst_null
            aload 1 /* handler */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.end:(Lio/netty/buffer/ByteBuf;Lio/vertx/core/Handler;)V
         1: .line 412
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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  

  io.vertx.core.net.NetSocket netSocket();
    descriptor: ()Lio/vertx/core/net/NetSocket;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 415
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         1: .line 416
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 1
            monitorenter
         2: .line 417
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.netSocket:Lio/vertx/core/net/NetSocket;
            ifnull 5
         3: .line 418
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.netSocket:Lio/vertx/core/net/NetSocket;
            aload 1
            monitorexit
         4: areturn
         5: .line 420
      StackMap locals: io.vertx.core.http.impl.Http2ServerConnection
      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.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
         6: .line 421
            aload 0 /* this */
            iconst_0
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkSendHeaders:(Z)Z
            ifne 8
         7: .line 422
            new java.lang.IllegalStateException
            dup
            ldc "Response for CONNECT already sent"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 424
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.flush:()Lio/netty/channel/ChannelHandlerContext;
            pop
         9: .line 425
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            invokevirtual io.vertx.core.http.impl.Http2ServerConnection.toNetSocket:(Lio/vertx/core/http/impl/VertxHttp2Stream;)Lio/vertx/core/net/NetSocket;
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.netSocket:Lio/vertx/core/net/NetSocket;
        10: .line 416
            aload 1
            monitorexit
        11: goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: aload 1
            monitorexit
        13: athrow
        14: .line 427
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.netSocket:Lio/vertx/core/net/NetSocket;
            areturn
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
      Exception table:
        from    to  target  type
           2     4      12  any
           5    11      12  any
          12    13      12  any

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

  private void sanitizeHeaders();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 435
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.head:Z
            ifne 1
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            getstatic io.netty.handler.codec.http.HttpResponseStatus.NOT_MODIFIED:Lio/netty/handler/codec/http/HttpResponseStatus;
            if_acmpne 3
         1: .line 436
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            getstatic io.vertx.core.http.HttpHeaders.TRANSFER_ENCODING:Ljava/lang/CharSequence;
            invokeinterface io.netty.handler.codec.http2.Http2Headers.remove:(Ljava/lang/Object;)Z
            pop
         2: .line 437
            goto 10
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            getstatic io.netty.handler.codec.http.HttpResponseStatus.RESET_CONTENT:Lio/netty/handler/codec/http/HttpResponseStatus;
            if_acmpne 7
         4: .line 438
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            getstatic io.vertx.core.http.HttpHeaders.TRANSFER_ENCODING:Ljava/lang/CharSequence;
            invokeinterface io.netty.handler.codec.http2.Http2Headers.remove:(Ljava/lang/Object;)Z
            pop
         5: .line 439
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            getstatic io.vertx.core.http.HttpHeaders.CONTENT_LENGTH:Ljava/lang/CharSequence;
            ldc "0"
            invokeinterface io.netty.handler.codec.http2.Http2Headers.set:(Ljava/lang/Object;Ljava/lang/Object;)Lio/netty/handler/codec/Headers;
            pop
         6: .line 440
            goto 10
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.codeClass:()Lio/netty/handler/codec/http/HttpStatusClass;
            getstatic io.netty.handler.codec.http.HttpStatusClass.INFORMATIONAL:Lio/netty/handler/codec/http/HttpStatusClass;
            if_acmpeq 8
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            getstatic io.netty.handler.codec.http.HttpResponseStatus.NO_CONTENT:Lio/netty/handler/codec/http/HttpResponseStatus;
            if_acmpne 10
         8: .line 441
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            getstatic io.vertx.core.http.HttpHeaders.TRANSFER_ENCODING:Ljava/lang/CharSequence;
            invokeinterface io.netty.handler.codec.http2.Http2Headers.remove:(Ljava/lang/Object;)Z
            pop
         9: .line 442
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            getstatic io.vertx.core.http.HttpHeaders.CONTENT_LENGTH:Ljava/lang/CharSequence;
            invokeinterface io.netty.handler.codec.http2.Http2Headers.remove:(Ljava/lang/Object;)Z
            pop
        10: .line 444
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;

  private boolean checkSendHeaders(boolean);
    descriptor: (Z)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // boolean end
         0: .line 447
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headWritten:Z
            ifne 10
         1: .line 448
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headersEndHandler:Lio/vertx/core/Handler;
            ifnull 3
         2: .line 449
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headersEndHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 451
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.sanitizeHeaders:()V
         4: .line 452
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.headWritten:Z
         5: .line 453
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.code:()I
            invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
            invokeinterface io.netty.handler.codec.http2.Http2Headers.status:(Ljava/lang/CharSequence;)Lio/netty/handler/codec/http2/Http2Headers;
            pop
         6: .line 454
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            iload 1 /* end */
            aconst_null
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.writeHead:(Lio/netty/handler/codec/http2/Http2Headers;ZLio/vertx/core/Handler;)V
         7: .line 455
            iload 1 /* end */
            ifeq 9
         8: .line 456
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.flush:()Lio/netty/channel/ChannelHandlerContext;
            pop
         9: .line 458
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        10: .line 460
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // boolean end
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0   11     1   end  Z
    MethodParameters:
      Name  Flags
      end   

  void write(io.netty.buffer.ByteBuf, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=9, args_size=4
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // io.netty.buffer.ByteBuf chunk
        start local 2 // boolean end
        start local 3 // io.vertx.core.Handler handler
         0: .line 467
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 6
            monitorenter
         1: .line 468
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ended:Z
            ifeq 3
         2: .line 469
            new java.lang.IllegalStateException
            dup
            ldc "Response has already been written"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 471
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.netty.buffer.ByteBuf int io.vertx.core.Handler top top io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ended:Z
            iload 2 /* end */
            ior
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.ended:Z
         4: .line 472
            iconst_0
            istore 7 /* hasBody */
        start local 7 // boolean hasBody
         5: .line 473
            aload 1 /* chunk */
            ifnull 8
         6: .line 474
            iconst_1
            istore 7 /* hasBody */
         7: .line 475
            goto 9
         8: .line 476
      StackMap locals: int
      StackMap stack:
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            astore 1 /* chunk */
         9: .line 478
      StackMap locals:
      StackMap stack:
            iload 2 /* end */
            ifeq 12
        10: .line 479
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headWritten:Z
            ifne 12
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.head:Z
            ifne 12
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.status:Lio/netty/handler/codec/http/HttpResponseStatus;
            getstatic io.netty.handler.codec.http.HttpResponseStatus.NOT_MODIFIED:Lio/netty/handler/codec/http/HttpResponseStatus;
            if_acmpeq 12
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            getstatic io.netty.handler.codec.http.HttpHeaderNames.CONTENT_LENGTH:Lio/netty/util/AsciiString;
            invokeinterface io.netty.handler.codec.http2.Http2Headers.contains:(Ljava/lang/Object;)Z
            ifne 12
        11: .line 480
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.headers:()Lio/vertx/core/MultiMap;
            getstatic io.netty.handler.codec.http.HttpHeaderNames.CONTENT_LENGTH:Lio/netty/util/AsciiString;
            aload 1 /* chunk */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokeinterface io.vertx.core.MultiMap.set:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/MultiMap;
            pop
        12: .line 483
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* end */
            ifeq 13
            iload 7 /* hasBody */
            ifne 13
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.trailers:Lio/netty/handler/codec/http2/Http2Headers;
            ifnonnull 13
            iconst_1
            goto 14
      StackMap locals:
      StackMap stack: io.vertx.core.http.impl.Http2ServerResponseImpl
        13: iconst_0
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.netty.buffer.ByteBuf int io.vertx.core.Handler top top io.vertx.core.http.impl.Http2ServerConnection int
      StackMap stack: io.vertx.core.http.impl.Http2ServerResponseImpl int
        14: invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkSendHeaders:(Z)Z
            istore 8 /* sent */
        start local 8 // boolean sent
        15: .line 484
            iload 7 /* hasBody */
            ifne 16
            iload 8 /* sent */
            ifne 19
            iload 2 /* end */
            ifeq 19
        16: .line 485
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            aload 1 /* chunk */
            iload 2 /* end */
            ifeq 17
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.trailers:Lio/netty/handler/codec/http2/Http2Headers;
            ifnonnull 17
            iconst_1
            goto 18
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.netty.buffer.ByteBuf int io.vertx.core.Handler top top io.vertx.core.http.impl.Http2ServerConnection int int
      StackMap stack: io.vertx.core.http.impl.Http2ServerStream io.netty.buffer.ByteBuf
        17: iconst_0
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.netty.buffer.ByteBuf int io.vertx.core.Handler top top io.vertx.core.http.impl.Http2ServerConnection int int
      StackMap stack: io.vertx.core.http.impl.Http2ServerStream io.netty.buffer.ByteBuf int
        18: aload 3 /* handler */
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.writeData:(Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler;)V
        19: .line 487
      StackMap locals:
      StackMap stack:
            iload 2 /* end */
            ifeq 21
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.trailers:Lio/netty/handler/codec/http2/Http2Headers;
            ifnull 21
        20: .line 488
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.trailers:Lio/netty/handler/codec/http2/Http2Headers;
            iconst_1
            aconst_null
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.writeHeaders:(Lio/netty/handler/codec/http2/Http2Headers;ZLio/vertx/core/Handler;)V
        21: .line 490
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.bodyEndHandler:Lio/vertx/core/Handler;
            astore 4 /* bodyEndHandler */
        start local 4 // io.vertx.core.Handler bodyEndHandler
        22: .line 491
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.endHandler:Lio/vertx/core/Handler;
            astore 5 /* endHandler */
        end local 8 // boolean sent
        end local 7 // boolean hasBody
        start local 5 // io.vertx.core.Handler endHandler
        23: .line 467
            aload 6
            monitorexit
        24: goto 27
        end local 5 // io.vertx.core.Handler endHandler
        end local 4 // io.vertx.core.Handler bodyEndHandler
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.netty.buffer.ByteBuf int io.vertx.core.Handler top top io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
        25: aload 6
            monitorexit
        26: athrow
        start local 4 // io.vertx.core.Handler bodyEndHandler
        start local 5 // io.vertx.core.Handler endHandler
        27: .line 493
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.netty.buffer.ByteBuf int io.vertx.core.Handler io.vertx.core.Handler io.vertx.core.Handler
      StackMap stack:
            iload 2 /* end */
            ifeq 32
        28: .line 494
            aload 4 /* bodyEndHandler */
            ifnull 30
        29: .line 495
            aload 4 /* bodyEndHandler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        30: .line 497
      StackMap locals:
      StackMap stack:
            aload 5 /* endHandler */
            ifnull 32
        31: .line 498
            aload 5 /* endHandler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        32: .line 501
      StackMap locals:
      StackMap stack:
            return
        end local 5 // io.vertx.core.Handler endHandler
        end local 4 // io.vertx.core.Handler bodyEndHandler
        end local 3 // io.vertx.core.Handler handler
        end local 2 // boolean end
        end local 1 // io.netty.buffer.ByteBuf chunk
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   33     0            this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0   33     1           chunk  Lio/netty/buffer/ByteBuf;
            0   33     2             end  Z
            0   33     3         handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
           22   25     4  bodyEndHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           27   33     4  bodyEndHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           23   25     5      endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           27   33     5      endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            5   23     7         hasBody  Z
           15   23     8            sent  Z
      Exception table:
        from    to  target  type
           1    24      25  any
          25    26      25  any
    Signature: (Lio/netty/buffer/ByteBuf;ZLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      chunk    
      end      
      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=4, locals=5, args_size=4
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // int type
        start local 2 // int flags
        start local 3 // io.vertx.core.buffer.Buffer payload
         0: .line 505
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 4
            monitorenter
         1: .line 506
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         2: .line 507
            aload 0 /* this */
            iconst_0
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkSendHeaders:(Z)Z
            pop
         3: .line 508
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            iload 1 /* type */
            iload 2 /* flags */
            aload 3 /* payload */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.writeFrame:(IILio/netty/buffer/ByteBuf;)V
         4: .line 509
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.flush:()Lio/netty/channel/ChannelHandlerContext;
            pop
         5: .line 510
            aload 0 /* this */
            aload 4
            monitorexit
         6: areturn
         7: .line 505
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl int int io.vertx.core.buffer.Buffer io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
         8: athrow
        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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    9     1     type  I
            0    9     2    flags  I
            0    9     3  payload  Lio/vertx/core/buffer/Buffer;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any
    MethodParameters:
         Name  Flags
      type     
      flags    
      payload  

  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.Http2ServerResponseImpl this
         0: .line 515
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ended:Z
            ifeq 2
         1: .line 516
            new java.lang.IllegalStateException
            dup
            ldc "Response has already been written"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 518
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.closed:Z
            ifeq 4
         3: .line 519
            new java.lang.IllegalStateException
            dup
            ldc "Response is closed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 521
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;

  void writabilityChanged();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 524
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ended:Z
            ifne 2
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.writeQueueFull:()Z
            ifne 2
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.drainHandler:Lio/vertx/core/Handler;
            ifnull 2
         1: .line 525
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.drainHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 527
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;

  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.Http2ServerResponseImpl this
         0: .line 531
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 532
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         2: .line 533
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.isNotWritable:()Z
            aload 1
            monitorexit
         3: ireturn
         4: .line 531
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         5: athrow
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any

  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.Http2ServerResponseImpl this
        start local 1 // int maxSize
         0: .line 539
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 540
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         2: .line 539
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl int io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 543
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // int maxSize
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    7     1  maxSize  I
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
         Name  Flags
      maxSize  

  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.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 548
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 549
            aload 1 /* handler */
            ifnull 3
         2: .line 550
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         3: .line 552
      StackMap locals: io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.drainHandler:Lio/vertx/core/Handler;
         4: .line 553
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 548
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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 sendFile(java.lang.String, long, long);
    descriptor: (Ljava/lang/String;JJ)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=4
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // java.lang.String filename
        start local 2 // long offset
        start local 4 // long length
         0: .line 559
            aload 0 /* this */
            aload 1 /* filename */
            lload 2 /* offset */
            lload 4 /* length */
            aconst_null
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.sendFile:(Ljava/lang/String;JJLio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
            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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    1     1  filename  Ljava/lang/String;
            0    1     2    offset  J
            0    1     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=8, locals=15, args_size=5
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl 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 564
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 7
            monitorenter
         1: .line 565
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         2: .line 567
            aload 6 /* resultHandler */
            ifnull 3
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            getfield io.vertx.core.http.impl.Http2ServerStream.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            goto 4
      StackMap locals: io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
         3: aconst_null
      StackMap locals:
      StackMap stack: io.vertx.core.impl.ContextInternal
         4: astore 8 /* resultCtx */
        start local 8 // io.vertx.core.Context resultCtx
         5: .line 569
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            getfield io.vertx.core.http.impl.Http2ServerStream.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 1 /* filename */
            invokeinterface io.vertx.core.impl.VertxInternal.resolveFile:(Ljava/lang/String;)Ljava/io/File;
            astore 9 /* file */
        start local 9 // java.io.File file
         6: .line 570
            aload 9 /* file */
            invokevirtual java.io.File.exists:()Z
            ifne 13
         7: .line 571
            aload 6 /* resultHandler */
            ifnull 10
         8: .line 572
            aload 8 /* resultCtx */
            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/Http2ServerResponseImpl.lambda$0(Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         9: .line 573
            goto 11
        10: .line 574
      StackMap locals: io.vertx.core.Context java.io.File
      StackMap stack:
            getstatic io.vertx.core.http.impl.Http2ServerResponseImpl.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 576
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 7
            monitorexit
        12: areturn
        13: .line 581
      StackMap locals:
      StackMap stack:
            new java.io.RandomAccessFile
            dup
            aload 9 /* file */
            ldc "r"
            invokespecial java.io.RandomAccessFile.<init>:(Ljava/io/File;Ljava/lang/String;)V
            astore 10 /* raf */
        start local 10 // java.io.RandomAccessFile raf
        14: .line 582
            goto 22
        end local 10 // java.io.RandomAccessFile raf
      StackMap locals:
      StackMap stack: java.io.IOException
        15: astore 11 /* e */
        start local 11 // java.io.IOException e
        16: .line 583
            aload 6 /* resultHandler */
            ifnull 19
        17: .line 584
            aload 8 /* resultCtx */
            aload 6 /* resultHandler */
            aload 11 /* 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/Http2ServerResponseImpl.lambda$1(Lio/vertx/core/Handler;Ljava/io/IOException;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
        18: .line 585
            goto 20
        19: .line 586
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.String long long io.vertx.core.Handler io.vertx.core.http.impl.Http2ServerConnection io.vertx.core.Context java.io.File top java.io.IOException
      StackMap stack:
            getstatic io.vertx.core.http.impl.Http2ServerResponseImpl.log:Lio/vertx/core/logging/Logger;
            ldc "Failed to send file"
            aload 11 /* e */
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        20: .line 588
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 7
            monitorexit
        21: areturn
        end local 11 // java.io.IOException e
        start local 10 // java.io.RandomAccessFile raf
        22: .line 591
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.String long long io.vertx.core.Handler io.vertx.core.http.impl.Http2ServerConnection io.vertx.core.Context java.io.File java.io.RandomAccessFile
      StackMap stack:
            lload 4 /* length */
            aload 9 /* file */
            invokevirtual java.io.File.length:()J
            lload 2 /* offset */
            lsub
            invokestatic java.lang.Math.min:(JJ)J
            lstore 11 /* contentLength */
        start local 11 // long contentLength
        23: .line 592
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            getstatic io.netty.handler.codec.http.HttpHeaderNames.CONTENT_LENGTH:Lio/netty/util/AsciiString;
            invokeinterface io.netty.handler.codec.http2.Http2Headers.get:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnonnull 25
        24: .line 593
            aload 0 /* this */
            getstatic io.netty.handler.codec.http.HttpHeaderNames.CONTENT_LENGTH:Lio/netty/util/AsciiString;
            lload 11 /* contentLength */
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.putHeader:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/HttpServerResponse;
            pop
        25: .line 595
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headers:Lio/netty/handler/codec/http2/Http2Headers;
            getstatic io.netty.handler.codec.http.HttpHeaderNames.CONTENT_TYPE:Lio/netty/util/AsciiString;
            invokeinterface io.netty.handler.codec.http2.Http2Headers.get:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnonnull 29
        26: .line 596
            aload 1 /* filename */
            invokestatic io.vertx.core.http.impl.MimeMapping.getMimeTypeForFilename:(Ljava/lang/String;)Ljava/lang/String;
            astore 13 /* contentType */
        start local 13 // java.lang.String contentType
        27: .line 597
            aload 13 /* contentType */
            ifnull 29
        28: .line 598
            aload 0 /* this */
            getstatic io.netty.handler.codec.http.HttpHeaderNames.CONTENT_TYPE:Lio/netty/util/AsciiString;
            aload 13 /* contentType */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.putHeader:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/HttpServerResponse;
            pop
        end local 13 // java.lang.String contentType
        29: .line 601
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkSendHeaders:(Z)Z
            pop
        30: .line 603
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 13 /* result */
        start local 13 // io.vertx.core.Promise result
        31: .line 604
            aload 13 /* result */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            aload 0 /* this */
            aload 6 /* resultHandler */
            aload 8 /* resultCtx */
            invokedynamic handle(Lio/vertx/core/http/impl/Http2ServerResponseImpl;Lio/vertx/core/Handler;Lio/vertx/core/Context;)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/Http2ServerResponseImpl.lambda$2(Lio/vertx/core/Handler;Lio/vertx/core/Context;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.setHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        32: .line 615
            new io.vertx.core.http.impl.FileStreamChannel
            dup
            aload 13 /* result */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            lload 2 /* offset */
            lload 11 /* contentLength */
            invokespecial io.vertx.core.http.impl.FileStreamChannel.<init>:(Lio/vertx/core/Promise;Lio/vertx/core/http/impl/VertxHttp2Stream;JJ)V
            astore 14 /* fileChannel */
        start local 14 // io.vertx.core.http.impl.FileStreamChannel fileChannel
        33: .line 616
            aload 0 /* this */
            aload 14 /* fileChannel */
            getfield io.vertx.core.http.impl.FileStreamChannel.drainHandler:Lio/vertx/core/Handler;
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
            pop
        34: .line 617
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
        35: .line 618
            invokeinterface io.netty.channel.Channel.eventLoop:()Lio/netty/channel/EventLoop;
        36: .line 619
            aload 14 /* fileChannel */
            invokeinterface io.netty.channel.EventLoop.register:(Lio/netty/channel/Channel;)Lio/netty/channel/ChannelFuture;
        37: .line 620
            aload 14 /* fileChannel */
            aload 10 /* raf */
            aload 13 /* result */
            invokedynamic operationComplete(Lio/vertx/core/http/impl/FileStreamChannel;Ljava/io/RandomAccessFile;Lio/vertx/core/Promise;)Lio/netty/channel/ChannelFutureListener;
              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/Http2ServerResponseImpl.lambda$4(Lio/vertx/core/http/impl/FileStreamChannel;Ljava/io/RandomAccessFile;Lio/vertx/core/Promise;Lio/netty/channel/ChannelFuture;)V (6)
                  (Lio/netty/channel/ChannelFuture;)V
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
        end local 14 // io.vertx.core.http.impl.FileStreamChannel fileChannel
        end local 13 // io.vertx.core.Promise result
        end local 11 // long contentLength
        end local 10 // java.io.RandomAccessFile raf
        end local 9 // java.io.File file
        end local 8 // io.vertx.core.Context resultCtx
        38: .line 564
            aload 7
            monitorexit
        39: goto 42
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl java.lang.String long long io.vertx.core.Handler io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
        40: aload 7
            monitorexit
        41: athrow
        42: .line 628
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   43     0           this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0   43     1       filename  Ljava/lang/String;
            0   43     2         offset  J
            0   43     4         length  J
            0   43     6  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            5   38     8      resultCtx  Lio/vertx/core/Context;
            6   38     9           file  Ljava/io/File;
           14   15    10            raf  Ljava/io/RandomAccessFile;
           22   38    10            raf  Ljava/io/RandomAccessFile;
           16   22    11              e  Ljava/io/IOException;
           23   38    11  contentLength  J
           27   29    13    contentType  Ljava/lang/String;
           31   38    13         result  Lio/vertx/core/Promise<Ljava/lang/Long;>;
           33   38    14    fileChannel  Lio/vertx/core/http/impl/FileStreamChannel;
      Exception table:
        from    to  target  type
          13    14      15  Class java.io.IOException
           1    12      40  any
          13    21      40  any
          22    39      40  any
          40    41      40  any
    Signature: (Ljava/lang/String;JJLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/core/http/HttpServerResponse;
    MethodParameters:
               Name  Flags
      filename       
      offset         
      length         
      resultHandler  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 633
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            invokevirtual io.vertx.core.http.impl.Http2ServerConnection.close:()V
         1: .line 634
            return
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;

  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.Http2ServerResponseImpl this
         0: .line 638
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 639
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ended:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 638
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
      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=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 645
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            invokevirtual io.vertx.core.http.impl.Http2ServerConnection.isClosed:()Z
            ireturn
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;

  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.Http2ServerResponseImpl this
         0: .line 650
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 1
            monitorenter
         1: .line 651
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.headWritten:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 650
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
      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.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 657
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 658
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.headersEndHandler:Lio/vertx/core/Handler;
         2: .line 659
            aload 0 /* this */
            aload 2
            monitorexit
         3: areturn
         4: .line 657
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.Handler io.vertx.core.http.impl.Http2ServerConnection
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    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.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 665
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 666
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.Http2ServerResponseImpl.bodyEndHandler:Lio/vertx/core/Handler;
         2: .line 667
            aload 0 /* this */
            aload 2
            monitorexit
         3: areturn
         4: .line 665
      StackMap locals: io.vertx.core.http.impl.Http2ServerResponseImpl io.vertx.core.Handler io.vertx.core.http.impl.Http2ServerConnection
      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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
         Name  Flags
      handler  

  public long bytesWritten();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
         0: .line 673
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.bytesWritten:()J
            lreturn
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;

  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.Http2ServerResponseImpl this
         0: .line 678
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.id:()I
            ireturn
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;

  public void reset(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // long code
         0: .line 688
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         1: .line 689
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            lload 1 /* code */
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.writeReset:(J)V
         2: .line 690
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.ctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.flush:()Lio/netty/channel/ChannelHandlerContext;
            pop
         3: .line 691
            return
        end local 1 // long code
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    4     1  code  J
    MethodParameters:
      Name  Flags
      code  

  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=6, locals=5, args_size=5
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl 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 695
            aload 0 /* this */
            aload 1 /* method */
            aload 2 /* host */
            aload 3 /* path */
            aconst_null
            aload 4 /* handler */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.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 // 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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.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.Http2ServerResponseImpl 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 700
            aload 0 /* this */
            aload 1 /* method */
            aconst_null
            aload 2 /* path */
            aload 3 /* headers */
            aload 4 /* handler */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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.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=8, locals=7, args_size=6
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl 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 705
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            dup
            astore 6
            monitorenter
         1: .line 706
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.push:Z
            ifeq 3
         2: .line 707
            new java.lang.IllegalStateException
            dup
            ldc "A push response cannot promise another push"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 709
      StackMap locals: io.vertx.core.http.impl.Http2ServerConnection
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.checkValid:()V
         4: .line 710
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.conn:Lio/vertx/core/http/impl/Http2ServerConnection;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.id:()I
            aload 2 /* host */
            aload 1 /* method */
            aload 4 /* headers */
            aload 3 /* path */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.priority:()Lio/vertx/core/http/StreamPriority;
            aload 5 /* handler */
            invokevirtual io.vertx.core.http.impl.Http2ServerConnection.sendPush:(ILjava/lang/String;Lio/vertx/core/http/HttpMethod;Lio/vertx/core/MultiMap;Ljava/lang/String;Lio/vertx/core/http/StreamPriority;Lio/vertx/core/Handler;)V
         5: .line 711
            aload 0 /* this */
            aload 6
            monitorexit
         6: areturn
         7: .line 705
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 6
            monitorexit
         8: athrow
        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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    9     1   method  Lio/vertx/core/http/HttpMethod;
            0    9     2     host  Ljava/lang/String;
            0    9     3     path  Ljava/lang/String;
            0    9     4  headers  Lio/vertx/core/MultiMap;
            0    9     5  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServerResponse;>;>;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any
    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 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=5, locals=4, args_size=4
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl 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 717
            aload 0 /* this */
            aload 1 /* method */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.host:Ljava/lang/String;
            aload 2 /* path */
            aload 3 /* handler */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.push:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Ljava/lang/String;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.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            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 setStreamPriority(io.vertx.core.http.StreamPriority);
    descriptor: (Lio/vertx/core/http/StreamPriority;)Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 1 // io.vertx.core.http.StreamPriority priority
         0: .line 722
            aload 0 /* this */
            getfield io.vertx.core.http.impl.Http2ServerResponseImpl.stream:Lio/vertx/core/http/impl/Http2ServerStream;
            aload 1 /* priority */
            invokevirtual io.vertx.core.http.impl.Http2ServerStream.updatePriority:(Lio/vertx/core/http/StreamPriority;)V
         1: .line 723
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.http.StreamPriority priority
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    2     1  priority  Lio/vertx/core/http/StreamPriority;
    MethodParameters:
          Name  Flags
      priority  

  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.Http2ServerResponseImpl.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.Http2ServerResponseImpl.end:(Lio/vertx/core/buffer/Buffer;)V
            return
      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.Http2ServerResponseImpl.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.Http2ServerResponseImpl.write:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/HttpServerResponse;
            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.Http2ServerResponseImpl.setWriteQueueMaxSize:(I)Lio/vertx/core/http/HttpServerResponse;
            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.Http2ServerResponseImpl.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.Http2ServerResponseImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
            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.Http2ServerResponseImpl.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerResponse;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$0(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 572
            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$1(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 584
            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$2(io.vertx.core.Handler, io.vertx.core.Context, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/Context;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
        start local 3 // io.vertx.core.AsyncResult ar
         0: .line 605
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 2
         1: .line 606
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.Http2ServerResponseImpl.end:()V
         2: .line 608
      StackMap locals:
      StackMap stack:
            aload 1
            ifnull 4
         3: .line 609
            aload 2
            aload 1
            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/Http2ServerResponseImpl.lambda$3(Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         4: .line 613
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.core.http.impl.Http2ServerResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/Http2ServerResponseImpl;
            0    5     3    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;

  private static void lambda$4(io.vertx.core.http.impl.FileStreamChannel, java.io.RandomAccessFile, io.vertx.core.Promise, io.netty.channel.ChannelFuture);
    descriptor: (Lio/vertx/core/http/impl/FileStreamChannel;Ljava/io/RandomAccessFile;Lio/vertx/core/Promise;Lio/netty/channel/ChannelFuture;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=4
        start local 3 // io.netty.channel.ChannelFuture future
         0: .line 621
            aload 3 /* future */
            invokeinterface io.netty.channel.ChannelFuture.isSuccess:()Z
            ifeq 3
         1: .line 622
            aload 0
            invokevirtual io.vertx.core.http.impl.FileStreamChannel.pipeline:()Lio/netty/channel/ChannelPipeline;
            aload 1
            invokeinterface io.netty.channel.ChannelPipeline.fireUserEventTriggered:(Ljava/lang/Object;)Lio/netty/channel/ChannelPipeline;
            pop
         2: .line 623
            goto 4
         3: .line 624
      StackMap locals:
      StackMap stack:
            aload 2
            aload 3 /* future */
            invokeinterface io.netty.channel.ChannelFuture.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/Throwable;)Z
            pop
         4: .line 626
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.netty.channel.ChannelFuture future
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     3  future  Lio/netty/channel/ChannelFuture;
    Exceptions:
      throws java.lang.Exception

  private static void lambda$3(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 610
            aload 0
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 611
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Void;
}
SourceFile: "Http2ServerResponseImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles