public class io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder implements io.netty.handler.codec.http2.Http2ConnectionEncoder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder
  super_class: java.lang.Object
{
  private final io.netty.handler.codec.http2.Http2FrameWriter frameWriter;
    descriptor: Lio/netty/handler/codec/http2/Http2FrameWriter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.netty.handler.codec.http2.Http2Connection connection;
    descriptor: Lio/netty/handler/codec/http2/Http2Connection;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final java.util.ArrayDeque<io.netty.handler.codec.http2.Http2Settings> outstandingLocalSettingsQueue;
    descriptor: Ljava/util/ArrayDeque;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayDeque<Lio/netty/handler/codec/http2/Http2Settings;>;

  private static volatile int[] $SWITCH_TABLE$io$netty$handler$codec$http2$Http2Stream$State;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  public void <init>(io.netty.handler.codec.http2.Http2Connection, io.netty.handler.codec.http2.Http2FrameWriter);
    descriptor: (Lio/netty/handler/codec/http2/Http2Connection;Lio/netty/handler/codec/http2/Http2FrameWriter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.handler.codec.http2.Http2Connection connection
        start local 2 // io.netty.handler.codec.http2.Http2FrameWriter frameWriter
         0: .line 48
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            new java.util.ArrayDeque
            dup
            iconst_4
            invokespecial java.util.ArrayDeque.<init>:(I)V
            putfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.outstandingLocalSettingsQueue:Ljava/util/ArrayDeque;
         2: .line 49
            aload 0 /* this */
            aload 1 /* connection */
            ldc "connection"
            invokestatic io.netty.util.internal.ObjectUtil.checkNotNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.netty.handler.codec.http2.Http2Connection
            putfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
         3: .line 50
            aload 0 /* this */
            aload 2 /* frameWriter */
            ldc "frameWriter"
            invokestatic io.netty.util.internal.ObjectUtil.checkNotNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.netty.handler.codec.http2.Http2FrameWriter
            putfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
         4: .line 51
            aload 1 /* connection */
            invokeinterface io.netty.handler.codec.http2.Http2Connection.remote:()Lio/netty/handler/codec/http2/Http2Connection$Endpoint;
            invokeinterface io.netty.handler.codec.http2.Http2Connection$Endpoint.flowController:()Lio/netty/handler/codec/http2/Http2FlowController;
            ifnonnull 6
         5: .line 52
            aload 1 /* connection */
            invokeinterface io.netty.handler.codec.http2.Http2Connection.remote:()Lio/netty/handler/codec/http2/Http2Connection$Endpoint;
            new io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController
            dup
            aload 1 /* connection */
            invokespecial io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController.<init>:(Lio/netty/handler/codec/http2/Http2Connection;)V
            invokeinterface io.netty.handler.codec.http2.Http2Connection$Endpoint.flowController:(Lio/netty/handler/codec/http2/Http2FlowController;)V
         6: .line 54
      StackMap locals: io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder io.netty.handler.codec.http2.Http2Connection io.netty.handler.codec.http2.Http2FrameWriter
      StackMap stack:
            return
        end local 2 // io.netty.handler.codec.http2.Http2FrameWriter frameWriter
        end local 1 // io.netty.handler.codec.http2.Http2Connection connection
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    7     1   connection  Lio/netty/handler/codec/http2/Http2Connection;
            0    7     2  frameWriter  Lio/netty/handler/codec/http2/Http2FrameWriter;
    MethodParameters:
             Name  Flags
      connection   
      frameWriter  

  public void lifecycleManager(io.netty.handler.codec.http2.Http2LifecycleManager);
    descriptor: (Lio/netty/handler/codec/http2/Http2LifecycleManager;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.handler.codec.http2.Http2LifecycleManager lifecycleManager
         0: .line 58
            aload 0 /* this */
            aload 1 /* lifecycleManager */
            ldc "lifecycleManager"
            invokestatic io.netty.util.internal.ObjectUtil.checkNotNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.netty.handler.codec.http2.Http2LifecycleManager
            putfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.lifecycleManager:Lio/netty/handler/codec/http2/Http2LifecycleManager;
         1: .line 59
            return
        end local 1 // io.netty.handler.codec.http2.Http2LifecycleManager lifecycleManager
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    2     1  lifecycleManager  Lio/netty/handler/codec/http2/Http2LifecycleManager;
    MethodParameters:
                  Name  Flags
      lifecycleManager  

  public io.netty.handler.codec.http2.Http2FrameWriter frameWriter();
    descriptor: ()Lio/netty/handler/codec/http2/Http2FrameWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
         0: .line 63
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
            areturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;

  public io.netty.handler.codec.http2.Http2Connection connection();
    descriptor: ()Lio/netty/handler/codec/http2/Http2Connection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
         0: .line 68
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            areturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;

  public final io.netty.handler.codec.http2.Http2RemoteFlowController flowController();
    descriptor: ()Lio/netty/handler/codec/http2/Http2RemoteFlowController;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
         0: .line 73
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:()Lio/netty/handler/codec/http2/Http2Connection;
            invokeinterface io.netty.handler.codec.http2.Http2Connection.remote:()Lio/netty/handler/codec/http2/Http2Connection$Endpoint;
            invokeinterface io.netty.handler.codec.http2.Http2Connection$Endpoint.flowController:()Lio/netty/handler/codec/http2/Http2FlowController;
            checkcast io.netty.handler.codec.http2.Http2RemoteFlowController
            areturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;

  public void remoteSettings(io.netty.handler.codec.http2.Http2Settings);
    descriptor: (Lio/netty/handler/codec/http2/Http2Settings;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=11, args_size=2
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.handler.codec.http2.Http2Settings settings
         0: .line 78
            aload 1 /* settings */
            invokevirtual io.netty.handler.codec.http2.Http2Settings.pushEnabled:()Ljava/lang/Boolean;
            astore 2 /* pushEnabled */
        start local 2 // java.lang.Boolean pushEnabled
         1: .line 79
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.configuration:()Lio/netty/handler/codec/http2/Http2FrameWriter$Configuration;
            astore 3 /* config */
        start local 3 // io.netty.handler.codec.http2.Http2FrameWriter$Configuration config
         2: .line 80
            aload 3 /* config */
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter$Configuration.headersConfiguration:()Lio/netty/handler/codec/http2/Http2HeadersEncoder$Configuration;
            astore 4 /* outboundHeaderConfig */
        start local 4 // io.netty.handler.codec.http2.Http2HeadersEncoder$Configuration outboundHeaderConfig
         3: .line 81
            aload 3 /* config */
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter$Configuration.frameSizePolicy:()Lio/netty/handler/codec/http2/Http2FrameSizePolicy;
            astore 5 /* outboundFrameSizePolicy */
        start local 5 // io.netty.handler.codec.http2.Http2FrameSizePolicy outboundFrameSizePolicy
         4: .line 82
            aload 2 /* pushEnabled */
            ifnull 10
         5: .line 83
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            invokeinterface io.netty.handler.codec.http2.Http2Connection.isServer:()Z
            ifne 9
            aload 2 /* pushEnabled */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 9
         6: .line 84
            getstatic io.netty.handler.codec.http2.Http2Error.PROTOCOL_ERROR:Lio/netty/handler/codec/http2/Http2Error;
         7: .line 85
            ldc "Client received a value of ENABLE_PUSH specified to other than 0"
            iconst_0
            anewarray java.lang.Object
         8: .line 84
            invokestatic io.netty.handler.codec.http2.Http2Exception.connectionError:(Lio/netty/handler/codec/http2/Http2Error;Ljava/lang/String;[Ljava/lang/Object;)Lio/netty/handler/codec/http2/Http2Exception;
            athrow
         9: .line 87
      StackMap locals: io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder io.netty.handler.codec.http2.Http2Settings java.lang.Boolean io.netty.handler.codec.http2.Http2FrameWriter$Configuration io.netty.handler.codec.http2.Http2HeadersEncoder$Configuration io.netty.handler.codec.http2.Http2FrameSizePolicy
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            invokeinterface io.netty.handler.codec.http2.Http2Connection.remote:()Lio/netty/handler/codec/http2/Http2Connection$Endpoint;
            aload 2 /* pushEnabled */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            invokeinterface io.netty.handler.codec.http2.Http2Connection$Endpoint.allowPushTo:(Z)V
        10: .line 90
      StackMap locals:
      StackMap stack:
            aload 1 /* settings */
            invokevirtual io.netty.handler.codec.http2.Http2Settings.maxConcurrentStreams:()Ljava/lang/Long;
            astore 6 /* maxConcurrentStreams */
        start local 6 // java.lang.Long maxConcurrentStreams
        11: .line 91
            aload 6 /* maxConcurrentStreams */
            ifnull 13
        12: .line 92
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            invokeinterface io.netty.handler.codec.http2.Http2Connection.local:()Lio/netty/handler/codec/http2/Http2Connection$Endpoint;
            aload 6 /* maxConcurrentStreams */
            invokevirtual java.lang.Long.longValue:()J
            ldc 2147483647
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            invokeinterface io.netty.handler.codec.http2.Http2Connection$Endpoint.maxActiveStreams:(I)V
        13: .line 95
      StackMap locals: java.lang.Long
      StackMap stack:
            aload 1 /* settings */
            invokevirtual io.netty.handler.codec.http2.Http2Settings.headerTableSize:()Ljava/lang/Long;
            astore 7 /* headerTableSize */
        start local 7 // java.lang.Long headerTableSize
        14: .line 96
            aload 7 /* headerTableSize */
            ifnull 16
        15: .line 97
            aload 4 /* outboundHeaderConfig */
            aload 7 /* headerTableSize */
            invokevirtual java.lang.Long.longValue:()J
            ldc 2147483647
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            i2l
            invokeinterface io.netty.handler.codec.http2.Http2HeadersEncoder$Configuration.maxHeaderTableSize:(J)V
        16: .line 100
      StackMap locals: java.lang.Long
      StackMap stack:
            aload 1 /* settings */
            invokevirtual io.netty.handler.codec.http2.Http2Settings.maxHeaderListSize:()Ljava/lang/Long;
            astore 8 /* maxHeaderListSize */
        start local 8 // java.lang.Long maxHeaderListSize
        17: .line 101
            aload 8 /* maxHeaderListSize */
            ifnull 19
        18: .line 102
            aload 4 /* outboundHeaderConfig */
            aload 8 /* maxHeaderListSize */
            invokevirtual java.lang.Long.longValue:()J
            invokeinterface io.netty.handler.codec.http2.Http2HeadersEncoder$Configuration.maxHeaderListSize:(J)V
        19: .line 105
      StackMap locals: java.lang.Long
      StackMap stack:
            aload 1 /* settings */
            invokevirtual io.netty.handler.codec.http2.Http2Settings.maxFrameSize:()Ljava/lang/Integer;
            astore 9 /* maxFrameSize */
        start local 9 // java.lang.Integer maxFrameSize
        20: .line 106
            aload 9 /* maxFrameSize */
            ifnull 22
        21: .line 107
            aload 5 /* outboundFrameSizePolicy */
            aload 9 /* maxFrameSize */
            invokevirtual java.lang.Integer.intValue:()I
            invokeinterface io.netty.handler.codec.http2.Http2FrameSizePolicy.maxFrameSize:(I)V
        22: .line 110
      StackMap locals: java.lang.Integer
      StackMap stack:
            aload 1 /* settings */
            invokevirtual io.netty.handler.codec.http2.Http2Settings.initialWindowSize:()Ljava/lang/Integer;
            astore 10 /* initialWindowSize */
        start local 10 // java.lang.Integer initialWindowSize
        23: .line 111
            aload 10 /* initialWindowSize */
            ifnull 25
        24: .line 112
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.flowController:()Lio/netty/handler/codec/http2/Http2RemoteFlowController;
            aload 10 /* initialWindowSize */
            invokevirtual java.lang.Integer.intValue:()I
            invokeinterface io.netty.handler.codec.http2.Http2RemoteFlowController.initialWindowSize:(I)V
        25: .line 114
      StackMap locals: java.lang.Integer
      StackMap stack:
            return
        end local 10 // java.lang.Integer initialWindowSize
        end local 9 // java.lang.Integer maxFrameSize
        end local 8 // java.lang.Long maxHeaderListSize
        end local 7 // java.lang.Long headerTableSize
        end local 6 // java.lang.Long maxConcurrentStreams
        end local 5 // io.netty.handler.codec.http2.Http2FrameSizePolicy outboundFrameSizePolicy
        end local 4 // io.netty.handler.codec.http2.Http2HeadersEncoder$Configuration outboundHeaderConfig
        end local 3 // io.netty.handler.codec.http2.Http2FrameWriter$Configuration config
        end local 2 // java.lang.Boolean pushEnabled
        end local 1 // io.netty.handler.codec.http2.Http2Settings settings
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   26     0                     this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0   26     1                 settings  Lio/netty/handler/codec/http2/Http2Settings;
            1   26     2              pushEnabled  Ljava/lang/Boolean;
            2   26     3                   config  Lio/netty/handler/codec/http2/Http2FrameWriter$Configuration;
            3   26     4     outboundHeaderConfig  Lio/netty/handler/codec/http2/Http2HeadersEncoder$Configuration;
            4   26     5  outboundFrameSizePolicy  Lio/netty/handler/codec/http2/Http2FrameSizePolicy;
           11   26     6     maxConcurrentStreams  Ljava/lang/Long;
           14   26     7          headerTableSize  Ljava/lang/Long;
           17   26     8        maxHeaderListSize  Ljava/lang/Long;
           20   26     9             maxFrameSize  Ljava/lang/Integer;
           23   26    10        initialWindowSize  Ljava/lang/Integer;
    Exceptions:
      throws io.netty.handler.codec.http2.Http2Exception
    MethodParameters:
          Name  Flags
      settings  

  public io.netty.channel.ChannelFuture writeData(io.netty.channel.ChannelHandlerContext, int, io.netty.buffer.ByteBuf, int, boolean, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;ILio/netty/buffer/ByteBuf;IZLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=9, args_size=7
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // int streamId
        start local 3 // io.netty.buffer.ByteBuf data
        start local 4 // int padding
        start local 5 // boolean endOfStream
        start local 6 // io.netty.channel.ChannelPromise promise
         0: .line 121
            aload 0 /* this */
            iload 2 /* streamId */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.requireStream:(I)Lio/netty/handler/codec/http2/Http2Stream;
            astore 7 /* stream */
        start local 7 // io.netty.handler.codec.http2.Http2Stream stream
         1: .line 124
            invokestatic io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.$SWITCH_TABLE$io$netty$handler$codec$http2$Http2Stream$State:()[I
            aload 7 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.state:()Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual io.netty.handler.codec.http2.Http2Stream$State.ordinal:()I
            iaload
            tableswitch { // 4 - 6
                    4: 2
                    5: 3
                    6: 2
              default: 3
          }
         2: .line 128
      StackMap locals: io.netty.handler.codec.http2.Http2Stream
      StackMap stack:
            goto 7
         3: .line 130
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Stream "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 7 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.id:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " in unexpected state "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 7 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.state:()Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 7 // io.netty.handler.codec.http2.Http2Stream stream
         4: .line 132
      StackMap locals: io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder io.netty.channel.ChannelHandlerContext int io.netty.buffer.ByteBuf int int io.netty.channel.ChannelPromise
      StackMap stack: java.lang.Throwable
            astore 8 /* e */
        start local 8 // java.lang.Throwable e
         5: .line 133
            aload 3 /* data */
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
         6: .line 134
            aload 6 /* promise */
            aload 8 /* e */
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            areturn
        end local 8 // java.lang.Throwable e
        start local 7 // io.netty.handler.codec.http2.Http2Stream stream
         7: .line 138
      StackMap locals: io.netty.handler.codec.http2.Http2Stream
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.flowController:()Lio/netty/handler/codec/http2/Http2RemoteFlowController;
            aload 7 /* stream */
         8: .line 139
            new io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData
            dup
            aload 0 /* this */
            aload 7 /* stream */
            aload 3 /* data */
            iload 4 /* padding */
            iload 5 /* endOfStream */
            aload 6 /* promise */
            invokespecial io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData.<init>:(Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;Lio/netty/handler/codec/http2/Http2Stream;Lio/netty/buffer/ByteBuf;IZLio/netty/channel/ChannelPromise;)V
         9: .line 138
            invokeinterface io.netty.handler.codec.http2.Http2RemoteFlowController.addFlowControlled:(Lio/netty/handler/codec/http2/Http2Stream;Lio/netty/handler/codec/http2/Http2RemoteFlowController$FlowControlled;)V
        10: .line 140
            aload 6 /* promise */
            areturn
        end local 7 // io.netty.handler.codec.http2.Http2Stream stream
        end local 6 // io.netty.channel.ChannelPromise promise
        end local 5 // boolean endOfStream
        end local 4 // int padding
        end local 3 // io.netty.buffer.ByteBuf data
        end local 2 // int streamId
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0   11     1          ctx  Lio/netty/channel/ChannelHandlerContext;
            0   11     2     streamId  I
            0   11     3         data  Lio/netty/buffer/ByteBuf;
            0   11     4      padding  I
            0   11     5  endOfStream  Z
            0   11     6      promise  Lio/netty/channel/ChannelPromise;
            1    4     7       stream  Lio/netty/handler/codec/http2/Http2Stream;
            7   11     7       stream  Lio/netty/handler/codec/http2/Http2Stream;
            5    7     8            e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     4       4  Class java.lang.Throwable
    MethodParameters:
             Name  Flags
      ctx          final
      streamId     final
      data         
      padding      
      endOfStream  final
      promise      

  public io.netty.channel.ChannelFuture writeHeaders(io.netty.channel.ChannelHandlerContext, int, io.netty.handler.codec.http2.Http2Headers, int, boolean, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/http2/Http2Headers;IZLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=7, args_size=7
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // int streamId
        start local 3 // io.netty.handler.codec.http2.Http2Headers headers
        start local 4 // int padding
        start local 5 // boolean endStream
        start local 6 // io.netty.channel.ChannelPromise promise
         0: .line 146
            aload 0 /* this */
            aload 1 /* ctx */
            iload 2 /* streamId */
            aload 3 /* headers */
            iconst_0
            bipush 16
            iconst_0
            iload 4 /* padding */
            iload 5 /* endStream */
            aload 6 /* promise */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.writeHeaders:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/http2/Http2Headers;ISZIZLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 6 // io.netty.channel.ChannelPromise promise
        end local 5 // boolean endStream
        end local 4 // int padding
        end local 3 // io.netty.handler.codec.http2.Http2Headers headers
        end local 2 // int streamId
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    1     1        ctx  Lio/netty/channel/ChannelHandlerContext;
            0    1     2   streamId  I
            0    1     3    headers  Lio/netty/handler/codec/http2/Http2Headers;
            0    1     4    padding  I
            0    1     5  endStream  Z
            0    1     6    promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
           Name  Flags
      ctx        
      streamId   
      headers    
      padding    
      endStream  
      promise    

  private static boolean validateHeadersSentState(io.netty.handler.codec.http2.Http2Stream, io.netty.handler.codec.http2.Http2Headers, boolean, boolean);
    descriptor: (Lio/netty/handler/codec/http2/Http2Stream;Lio/netty/handler/codec/http2/Http2Headers;ZZ)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // io.netty.handler.codec.http2.Http2Stream stream
        start local 1 // io.netty.handler.codec.http2.Http2Headers headers
        start local 2 // boolean isServer
        start local 3 // boolean endOfStream
         0: .line 151
            iload 2 /* isServer */
            ifeq 1
            aload 1 /* headers */
            invokeinterface io.netty.handler.codec.http2.Http2Headers.status:()Ljava/lang/CharSequence;
            invokestatic io.netty.handler.codec.http.HttpStatusClass.valueOf:(Ljava/lang/CharSequence;)Lio/netty/handler/codec/http/HttpStatusClass;
            getstatic io.netty.handler.codec.http.HttpStatusClass.INFORMATIONAL:Lio/netty/handler/codec/http/HttpStatusClass;
            if_acmpne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 4 /* isInformational */
        start local 4 // boolean isInformational
         3: .line 152
            iload 4 /* isInformational */
            ifne 4
            iload 3 /* endOfStream */
            ifne 5
      StackMap locals: int
      StackMap stack:
         4: aload 0 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.isHeadersSent:()Z
            ifne 6
      StackMap locals:
      StackMap stack:
         5: aload 0 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.isTrailersSent:()Z
            ifeq 7
         6: .line 153
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Stream "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.id:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " sent too many headers EOS: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* endOfStream */
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 155
      StackMap locals:
      StackMap stack:
            iload 4 /* isInformational */
            ireturn
        end local 4 // boolean isInformational
        end local 3 // boolean endOfStream
        end local 2 // boolean isServer
        end local 1 // io.netty.handler.codec.http2.Http2Headers headers
        end local 0 // io.netty.handler.codec.http2.Http2Stream stream
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    8     0           stream  Lio/netty/handler/codec/http2/Http2Stream;
            0    8     1          headers  Lio/netty/handler/codec/http2/Http2Headers;
            0    8     2         isServer  Z
            0    8     3      endOfStream  Z
            3    8     4  isInformational  Z
    MethodParameters:
             Name  Flags
      stream       
      headers      
      isServer     
      endOfStream  

  public io.netty.channel.ChannelFuture writeHeaders(io.netty.channel.ChannelHandlerContext, int, io.netty.handler.codec.http2.Http2Headers, int, short, boolean, int, boolean, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/http2/Http2Headers;ISZIZLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=13, locals=15, args_size=10
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // int streamId
        start local 3 // io.netty.handler.codec.http2.Http2Headers headers
        start local 4 // int streamDependency
        start local 5 // short weight
        start local 6 // boolean exclusive
        start local 7 // int padding
        start local 8 // boolean endOfStream
        start local 9 // io.netty.channel.ChannelPromise promise
         0: .line 163
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            iload 2 /* streamId */
            invokeinterface io.netty.handler.codec.http2.Http2Connection.stream:(I)Lio/netty/handler/codec/http2/Http2Stream;
            astore 10 /* stream */
        start local 10 // io.netty.handler.codec.http2.Http2Stream stream
         1: .line 164
            aload 10 /* stream */
            ifnonnull 10
         2: .line 166
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            invokeinterface io.netty.handler.codec.http2.Http2Connection.local:()Lio/netty/handler/codec/http2/Http2Connection$Endpoint;
            iload 2 /* streamId */
            iload 8 /* endOfStream */
            invokeinterface io.netty.handler.codec.http2.Http2Connection$Endpoint.createStream:(IZ)Lio/netty/handler/codec/http2/Http2Stream;
            astore 10 /* stream */
         3: .line 167
            goto 17
      StackMap locals: io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder io.netty.channel.ChannelHandlerContext int io.netty.handler.codec.http2.Http2Headers int int int int int io.netty.channel.ChannelPromise io.netty.handler.codec.http2.Http2Stream
      StackMap stack: io.netty.handler.codec.http2.Http2Exception
         4: astore 11 /* cause */
        start local 11 // io.netty.handler.codec.http2.Http2Exception cause
         5: .line 168
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            invokeinterface io.netty.handler.codec.http2.Http2Connection.remote:()Lio/netty/handler/codec/http2/Http2Connection$Endpoint;
            iload 2 /* streamId */
            invokeinterface io.netty.handler.codec.http2.Http2Connection$Endpoint.mayHaveCreatedStream:(I)Z
            ifeq 9
         6: .line 169
            aload 9 /* promise */
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Stream no longer exists: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* streamId */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 11 /* cause */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            invokeinterface io.netty.channel.ChannelPromise.tryFailure:(Ljava/lang/Throwable;)Z
            pop
         7: .line 170
            aload 9 /* promise */
         8: areturn
         9: .line 172
      StackMap locals: io.netty.handler.codec.http2.Http2Exception
      StackMap stack:
            aload 11 /* cause */
            athrow
        end local 11 // io.netty.handler.codec.http2.Http2Exception cause
        10: .line 175
      StackMap locals:
      StackMap stack:
            invokestatic io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.$SWITCH_TABLE$io$netty$handler$codec$http2$Http2Stream$State:()[I
            aload 10 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.state:()Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual io.netty.handler.codec.http2.Http2Stream$State.ordinal:()I
            iaload
            tableswitch { // 2 - 6
                    2: 11
                    3: 14
                    4: 13
                    5: 14
                    6: 13
              default: 14
          }
        11: .line 177
      StackMap locals:
      StackMap stack:
            aload 10 /* stream */
            iload 8 /* endOfStream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.open:(Z)Lio/netty/handler/codec/http2/Http2Stream;
            pop
        12: .line 178
            goto 17
        13: .line 182
      StackMap locals:
      StackMap stack:
            goto 17
        14: .line 184
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Stream "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 10 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.id:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " in unexpected state "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        15: .line 185
            aload 10 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.state:()Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        16: .line 184
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.flowController:()Lio/netty/handler/codec/http2/Http2RemoteFlowController;
            astore 11 /* flowController */
        start local 11 // io.netty.handler.codec.http2.Http2RemoteFlowController flowController
        18: .line 192
            iload 8 /* endOfStream */
            ifeq 19
            aload 11 /* flowController */
            aload 10 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2RemoteFlowController.hasFlowControlled:(Lio/netty/handler/codec/http2/Http2Stream;)Z
            ifne 36
        19: .line 193
      StackMap locals: io.netty.handler.codec.http2.Http2RemoteFlowController
      StackMap stack:
            aload 10 /* stream */
            aload 3 /* headers */
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            invokeinterface io.netty.handler.codec.http2.Http2Connection.isServer:()Z
            iload 8 /* endOfStream */
            invokestatic io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.validateHeadersSentState:(Lio/netty/handler/codec/http2/Http2Stream;Lio/netty/handler/codec/http2/Http2Headers;ZZ)Z
            istore 12 /* isInformational */
        start local 12 // boolean isInformational
        20: .line 194
            iload 8 /* endOfStream */
            ifeq 24
        21: .line 195
            aload 10 /* stream */
            astore 13 /* finalStream */
        start local 13 // io.netty.handler.codec.http2.Http2Stream finalStream
        22: .line 196
            new io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$1
            dup
            aload 0 /* this */
            aload 13 /* finalStream */
            invokespecial io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$1.<init>:(Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;Lio/netty/handler/codec/http2/Http2Stream;)V
            astore 14 /* closeStreamLocalListener */
        start local 14 // io.netty.channel.ChannelFutureListener closeStreamLocalListener
        23: .line 202
            aload 9 /* promise */
            invokeinterface io.netty.channel.ChannelPromise.unvoid:()Lio/netty/channel/ChannelPromise;
            aload 14 /* closeStreamLocalListener */
            invokeinterface io.netty.channel.ChannelPromise.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelPromise;
            astore 9 /* promise */
        end local 14 // io.netty.channel.ChannelFutureListener closeStreamLocalListener
        end local 13 // io.netty.handler.codec.http2.Http2Stream finalStream
        24: .line 205
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
            aload 1 /* ctx */
            iload 2 /* streamId */
            aload 3 /* headers */
            iload 4 /* streamDependency */
        25: .line 206
            iload 5 /* weight */
            iload 6 /* exclusive */
            iload 7 /* padding */
            iload 8 /* endOfStream */
            aload 9 /* promise */
        26: .line 205
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter.writeHeaders:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/http2/Http2Headers;ISZIZLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            astore 13 /* future */
        start local 13 // io.netty.channel.ChannelFuture future
        27: .line 208
            aload 13 /* future */
            invokeinterface io.netty.channel.ChannelFuture.cause:()Ljava/lang/Throwable;
            astore 14 /* failureCause */
        start local 14 // java.lang.Throwable failureCause
        28: .line 209
            aload 14 /* failureCause */
            ifnonnull 33
        29: .line 215
            aload 10 /* stream */
            iload 12 /* isInformational */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.headersSent:(Z)Lio/netty/handler/codec/http2/Http2Stream;
            pop
        30: .line 217
            aload 13 /* future */
            invokeinterface io.netty.channel.ChannelFuture.isSuccess:()Z
            ifne 34
        31: .line 219
            aload 0 /* this */
            aload 13 /* future */
            aload 1 /* ctx */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.notifyLifecycleManagerOnError:(Lio/netty/channel/ChannelFuture;Lio/netty/channel/ChannelHandlerContext;)V
        32: .line 221
            goto 34
        33: .line 222
      StackMap locals: io.netty.channel.ChannelFuture java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.lifecycleManager:Lio/netty/handler/codec/http2/Http2LifecycleManager;
            aload 1 /* ctx */
            iconst_1
            aload 14 /* failureCause */
            invokeinterface io.netty.handler.codec.http2.Http2LifecycleManager.onError:(Lio/netty/channel/ChannelHandlerContext;ZLjava/lang/Throwable;)V
        34: .line 225
      StackMap locals:
      StackMap stack:
            aload 13 /* future */
        35: areturn
        end local 14 // java.lang.Throwable failureCause
        end local 13 // io.netty.channel.ChannelFuture future
        end local 12 // boolean isInformational
        36: .line 228
      StackMap locals:
      StackMap stack:
            aload 11 /* flowController */
            aload 10 /* stream */
        37: .line 229
            new io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledHeaders
            dup
            aload 0 /* this */
            aload 10 /* stream */
            aload 3 /* headers */
            iload 4 /* streamDependency */
            iload 5 /* weight */
            iload 6 /* exclusive */
            iload 7 /* padding */
        38: .line 230
            iconst_1
            aload 9 /* promise */
        39: .line 229
            invokespecial io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledHeaders.<init>:(Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;Lio/netty/handler/codec/http2/Http2Stream;Lio/netty/handler/codec/http2/Http2Headers;ISZIZLio/netty/channel/ChannelPromise;)V
        40: .line 228
            invokeinterface io.netty.handler.codec.http2.Http2RemoteFlowController.addFlowControlled:(Lio/netty/handler/codec/http2/Http2Stream;Lio/netty/handler/codec/http2/Http2RemoteFlowController$FlowControlled;)V
        41: .line 231
            aload 9 /* promise */
        42: areturn
        end local 11 // io.netty.handler.codec.http2.Http2RemoteFlowController flowController
        end local 10 // io.netty.handler.codec.http2.Http2Stream stream
        43: .line 233
      StackMap locals: io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder io.netty.channel.ChannelHandlerContext int io.netty.handler.codec.http2.Http2Headers int int int int int io.netty.channel.ChannelPromise
      StackMap stack: java.lang.Throwable
            astore 10 /* t */
        start local 10 // java.lang.Throwable t
        44: .line 234
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.lifecycleManager:Lio/netty/handler/codec/http2/Http2LifecycleManager;
            aload 1 /* ctx */
            iconst_1
            aload 10 /* t */
            invokeinterface io.netty.handler.codec.http2.Http2LifecycleManager.onError:(Lio/netty/channel/ChannelHandlerContext;ZLjava/lang/Throwable;)V
        45: .line 235
            aload 9 /* promise */
            aload 10 /* t */
            invokeinterface io.netty.channel.ChannelPromise.tryFailure:(Ljava/lang/Throwable;)Z
            pop
        46: .line 236
            aload 9 /* promise */
            areturn
        end local 10 // java.lang.Throwable t
        end local 9 // io.netty.channel.ChannelPromise promise
        end local 8 // boolean endOfStream
        end local 7 // int padding
        end local 6 // boolean exclusive
        end local 5 // short weight
        end local 4 // int streamDependency
        end local 3 // io.netty.handler.codec.http2.Http2Headers headers
        end local 2 // int streamId
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   47     0                      this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0   47     1                       ctx  Lio/netty/channel/ChannelHandlerContext;
            0   47     2                  streamId  I
            0   47     3                   headers  Lio/netty/handler/codec/http2/Http2Headers;
            0   47     4          streamDependency  I
            0   47     5                    weight  S
            0   47     6                 exclusive  Z
            0   47     7                   padding  I
            0   47     8               endOfStream  Z
            0   47     9                   promise  Lio/netty/channel/ChannelPromise;
            1   43    10                    stream  Lio/netty/handler/codec/http2/Http2Stream;
            5   10    11                     cause  Lio/netty/handler/codec/http2/Http2Exception;
           18   43    11            flowController  Lio/netty/handler/codec/http2/Http2RemoteFlowController;
           20   36    12           isInformational  Z
           22   24    13               finalStream  Lio/netty/handler/codec/http2/Http2Stream;
           23   24    14  closeStreamLocalListener  Lio/netty/channel/ChannelFutureListener;
           27   36    13                    future  Lio/netty/channel/ChannelFuture;
           28   36    14              failureCause  Ljava/lang/Throwable;
           44   47    10                         t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     3       4  Class io.netty.handler.codec.http2.Http2Exception
           0     8      43  Class java.lang.Throwable
           9    35      43  Class java.lang.Throwable
          36    42      43  Class java.lang.Throwable
    MethodParameters:
                  Name  Flags
      ctx               final
      streamId          final
      headers           final
      streamDependency  final
      weight            final
      exclusive         final
      padding           final
      endOfStream       final
      promise           

  public io.netty.channel.ChannelFuture writePriority(io.netty.channel.ChannelHandlerContext, int, int, short, boolean, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;IISZLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=7
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // int streamId
        start local 3 // int streamDependency
        start local 4 // short weight
        start local 5 // boolean exclusive
        start local 6 // io.netty.channel.ChannelPromise promise
         0: .line 243
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
            aload 1 /* ctx */
            iload 2 /* streamId */
            iload 3 /* streamDependency */
            iload 4 /* weight */
            iload 5 /* exclusive */
            aload 6 /* promise */
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter.writePriority:(Lio/netty/channel/ChannelHandlerContext;IISZLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 6 // io.netty.channel.ChannelPromise promise
        end local 5 // boolean exclusive
        end local 4 // short weight
        end local 3 // int streamDependency
        end local 2 // int streamId
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    1     1               ctx  Lio/netty/channel/ChannelHandlerContext;
            0    1     2          streamId  I
            0    1     3  streamDependency  I
            0    1     4            weight  S
            0    1     5         exclusive  Z
            0    1     6           promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
                  Name  Flags
      ctx               
      streamId          
      streamDependency  
      weight            
      exclusive         
      promise           

  public io.netty.channel.ChannelFuture writeRstStream(io.netty.channel.ChannelHandlerContext, int, long, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;IJLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // int streamId
        start local 3 // long errorCode
        start local 5 // io.netty.channel.ChannelPromise promise
         0: .line 250
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.lifecycleManager:Lio/netty/handler/codec/http2/Http2LifecycleManager;
            aload 1 /* ctx */
            iload 2 /* streamId */
            lload 3 /* errorCode */
            aload 5 /* promise */
            invokeinterface io.netty.handler.codec.http2.Http2LifecycleManager.resetStream:(Lio/netty/channel/ChannelHandlerContext;IJLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 5 // io.netty.channel.ChannelPromise promise
        end local 3 // long errorCode
        end local 2 // int streamId
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    1     1        ctx  Lio/netty/channel/ChannelHandlerContext;
            0    1     2   streamId  I
            0    1     3  errorCode  J
            0    1     5    promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
           Name  Flags
      ctx        
      streamId   
      errorCode  
      promise    

  public io.netty.channel.ChannelFuture writeSettings(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.http2.Http2Settings, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/http2/Http2Settings;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.handler.codec.http2.Http2Settings settings
        start local 3 // io.netty.channel.ChannelPromise promise
         0: .line 256
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.outstandingLocalSettingsQueue:Ljava/util/ArrayDeque;
            aload 2 /* settings */
            invokevirtual java.util.ArrayDeque.add:(Ljava/lang/Object;)Z
            pop
         1: .line 258
            aload 2 /* settings */
            invokevirtual io.netty.handler.codec.http2.Http2Settings.pushEnabled:()Ljava/lang/Boolean;
            astore 4 /* pushEnabled */
        start local 4 // java.lang.Boolean pushEnabled
         2: .line 259
            aload 4 /* pushEnabled */
            ifnull 6
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            invokeinterface io.netty.handler.codec.http2.Http2Connection.isServer:()Z
            ifeq 6
         3: .line 260
            getstatic io.netty.handler.codec.http2.Http2Error.PROTOCOL_ERROR:Lio/netty/handler/codec/http2/Http2Error;
            ldc "Server sending SETTINGS frame with ENABLE_PUSH specified"
            iconst_0
            anewarray java.lang.Object
            invokestatic io.netty.handler.codec.http2.Http2Exception.connectionError:(Lio/netty/handler/codec/http2/Http2Error;Ljava/lang/String;[Ljava/lang/Object;)Lio/netty/handler/codec/http2/Http2Exception;
            athrow
        end local 4 // java.lang.Boolean pushEnabled
         4: .line 262
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4 /* e */
        start local 4 // java.lang.Throwable e
         5: .line 263
            aload 3 /* promise */
            aload 4 /* e */
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            areturn
        end local 4 // java.lang.Throwable e
         6: .line 266
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
            aload 1 /* ctx */
            aload 2 /* settings */
            aload 3 /* promise */
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter.writeSettings:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/http2/Http2Settings;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 3 // io.netty.channel.ChannelPromise promise
        end local 2 // io.netty.handler.codec.http2.Http2Settings settings
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    7     1          ctx  Lio/netty/channel/ChannelHandlerContext;
            0    7     2     settings  Lio/netty/handler/codec/http2/Http2Settings;
            0    7     3      promise  Lio/netty/channel/ChannelPromise;
            2    4     4  pushEnabled  Ljava/lang/Boolean;
            5    6     4            e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     4       4  Class java.lang.Throwable
    MethodParameters:
          Name  Flags
      ctx       
      settings  
      promise   

  public io.netty.channel.ChannelFuture writeSettingsAck(io.netty.channel.ChannelHandlerContext, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 271
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
            aload 1 /* ctx */
            aload 2 /* promise */
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter.writeSettingsAck:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    1     1      ctx  Lio/netty/channel/ChannelHandlerContext;
            0    1     2  promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
         Name  Flags
      ctx      
      promise  

  public io.netty.channel.ChannelFuture writePing(io.netty.channel.ChannelHandlerContext, boolean, long, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;ZJLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // boolean ack
        start local 3 // long data
        start local 5 // io.netty.channel.ChannelPromise promise
         0: .line 276
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
            aload 1 /* ctx */
            iload 2 /* ack */
            lload 3 /* data */
            aload 5 /* promise */
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter.writePing:(Lio/netty/channel/ChannelHandlerContext;ZJLio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 5 // io.netty.channel.ChannelPromise promise
        end local 3 // long data
        end local 2 // boolean ack
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    1     1      ctx  Lio/netty/channel/ChannelHandlerContext;
            0    1     2      ack  Z
            0    1     3     data  J
            0    1     5  promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
         Name  Flags
      ctx      
      ack      
      data     
      promise  

  public io.netty.channel.ChannelFuture writePushPromise(io.netty.channel.ChannelHandlerContext, int, int, io.netty.handler.codec.http2.Http2Headers, int, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;IILio/netty/handler/codec/http2/Http2Headers;ILio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=10, args_size=7
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // int streamId
        start local 3 // int promisedStreamId
        start local 4 // io.netty.handler.codec.http2.Http2Headers headers
        start local 5 // int padding
        start local 6 // io.netty.channel.ChannelPromise promise
         0: .line 283
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            invokeinterface io.netty.handler.codec.http2.Http2Connection.goAwayReceived:()Z
            ifeq 2
         1: .line 284
            getstatic io.netty.handler.codec.http2.Http2Error.PROTOCOL_ERROR:Lio/netty/handler/codec/http2/Http2Error;
            ldc "Sending PUSH_PROMISE after GO_AWAY received."
            iconst_0
            anewarray java.lang.Object
            invokestatic io.netty.handler.codec.http2.Http2Exception.connectionError:(Lio/netty/handler/codec/http2/Http2Error;Ljava/lang/String;[Ljava/lang/Object;)Lio/netty/handler/codec/http2/Http2Exception;
            athrow
         2: .line 287
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* streamId */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.requireStream:(I)Lio/netty/handler/codec/http2/Http2Stream;
            astore 7 /* stream */
        start local 7 // io.netty.handler.codec.http2.Http2Stream stream
         3: .line 289
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            invokeinterface io.netty.handler.codec.http2.Http2Connection.local:()Lio/netty/handler/codec/http2/Http2Connection$Endpoint;
            iload 3 /* promisedStreamId */
            aload 7 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Connection$Endpoint.reservePushStream:(ILio/netty/handler/codec/http2/Http2Stream;)Lio/netty/handler/codec/http2/Http2Stream;
            pop
         4: .line 291
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
            aload 1 /* ctx */
            iload 2 /* streamId */
            iload 3 /* promisedStreamId */
            aload 4 /* headers */
            iload 5 /* padding */
         5: .line 292
            aload 6 /* promise */
         6: .line 291
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter.writePushPromise:(Lio/netty/channel/ChannelHandlerContext;IILio/netty/handler/codec/http2/Http2Headers;ILio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            astore 8 /* future */
        start local 8 // io.netty.channel.ChannelFuture future
         7: .line 294
            aload 8 /* future */
            invokeinterface io.netty.channel.ChannelFuture.cause:()Ljava/lang/Throwable;
            astore 9 /* failureCause */
        start local 9 // java.lang.Throwable failureCause
         8: .line 295
            aload 9 /* failureCause */
            ifnonnull 13
         9: .line 298
            aload 7 /* stream */
            invokeinterface io.netty.handler.codec.http2.Http2Stream.pushPromiseSent:()Lio/netty/handler/codec/http2/Http2Stream;
            pop
        10: .line 300
            aload 8 /* future */
            invokeinterface io.netty.channel.ChannelFuture.isSuccess:()Z
            ifne 14
        11: .line 302
            aload 0 /* this */
            aload 8 /* future */
            aload 1 /* ctx */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.notifyLifecycleManagerOnError:(Lio/netty/channel/ChannelFuture;Lio/netty/channel/ChannelHandlerContext;)V
        12: .line 304
            goto 14
        13: .line 305
      StackMap locals: io.netty.handler.codec.http2.Http2Stream io.netty.channel.ChannelFuture java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.lifecycleManager:Lio/netty/handler/codec/http2/Http2LifecycleManager;
            aload 1 /* ctx */
            iconst_1
            aload 9 /* failureCause */
            invokeinterface io.netty.handler.codec.http2.Http2LifecycleManager.onError:(Lio/netty/channel/ChannelHandlerContext;ZLjava/lang/Throwable;)V
        14: .line 307
      StackMap locals:
      StackMap stack:
            aload 8 /* future */
        15: areturn
        end local 9 // java.lang.Throwable failureCause
        end local 8 // io.netty.channel.ChannelFuture future
        end local 7 // io.netty.handler.codec.http2.Http2Stream stream
        16: .line 308
      StackMap locals: io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder io.netty.channel.ChannelHandlerContext int int io.netty.handler.codec.http2.Http2Headers int io.netty.channel.ChannelPromise
      StackMap stack: java.lang.Throwable
            astore 7 /* t */
        start local 7 // java.lang.Throwable t
        17: .line 309
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.lifecycleManager:Lio/netty/handler/codec/http2/Http2LifecycleManager;
            aload 1 /* ctx */
            iconst_1
            aload 7 /* t */
            invokeinterface io.netty.handler.codec.http2.Http2LifecycleManager.onError:(Lio/netty/channel/ChannelHandlerContext;ZLjava/lang/Throwable;)V
        18: .line 310
            aload 6 /* promise */
            aload 7 /* t */
            invokeinterface io.netty.channel.ChannelPromise.tryFailure:(Ljava/lang/Throwable;)Z
            pop
        19: .line 311
            aload 6 /* promise */
            areturn
        end local 7 // java.lang.Throwable t
        end local 6 // io.netty.channel.ChannelPromise promise
        end local 5 // int padding
        end local 4 // io.netty.handler.codec.http2.Http2Headers headers
        end local 3 // int promisedStreamId
        end local 2 // int streamId
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   20     0              this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0   20     1               ctx  Lio/netty/channel/ChannelHandlerContext;
            0   20     2          streamId  I
            0   20     3  promisedStreamId  I
            0   20     4           headers  Lio/netty/handler/codec/http2/Http2Headers;
            0   20     5           padding  I
            0   20     6           promise  Lio/netty/channel/ChannelPromise;
            3   16     7            stream  Lio/netty/handler/codec/http2/Http2Stream;
            7   16     8            future  Lio/netty/channel/ChannelFuture;
            8   16     9      failureCause  Ljava/lang/Throwable;
           17   20     7                 t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0    15      16  Class java.lang.Throwable
    MethodParameters:
                  Name  Flags
      ctx               
      streamId          
      promisedStreamId  
      headers           
      padding           
      promise           

  public io.netty.channel.ChannelFuture writeGoAway(io.netty.channel.ChannelHandlerContext, int, long, io.netty.buffer.ByteBuf, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;IJLio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=6
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // int lastStreamId
        start local 3 // long errorCode
        start local 5 // io.netty.buffer.ByteBuf debugData
        start local 6 // io.netty.channel.ChannelPromise promise
         0: .line 318
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.lifecycleManager:Lio/netty/handler/codec/http2/Http2LifecycleManager;
            aload 1 /* ctx */
            iload 2 /* lastStreamId */
            lload 3 /* errorCode */
            aload 5 /* debugData */
            aload 6 /* promise */
            invokeinterface io.netty.handler.codec.http2.Http2LifecycleManager.goAway:(Lio/netty/channel/ChannelHandlerContext;IJLio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 6 // io.netty.channel.ChannelPromise promise
        end local 5 // io.netty.buffer.ByteBuf debugData
        end local 3 // long errorCode
        end local 2 // int lastStreamId
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    1     1           ctx  Lio/netty/channel/ChannelHandlerContext;
            0    1     2  lastStreamId  I
            0    1     3     errorCode  J
            0    1     5     debugData  Lio/netty/buffer/ByteBuf;
            0    1     6       promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
              Name  Flags
      ctx           
      lastStreamId  
      errorCode     
      debugData     
      promise       

  public io.netty.channel.ChannelFuture writeWindowUpdate(io.netty.channel.ChannelHandlerContext, int, int, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;IILio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // int streamId
        start local 3 // int windowSizeIncrement
        start local 4 // io.netty.channel.ChannelPromise promise
         0: .line 324
            aload 4 /* promise */
            new java.lang.UnsupportedOperationException
            dup
            ldc "Use the Http2[Inbound|Outbound]FlowController objects to control window sizes"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            areturn
        end local 4 // io.netty.channel.ChannelPromise promise
        end local 3 // int windowSizeIncrement
        end local 2 // int streamId
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    1     0                 this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    1     1                  ctx  Lio/netty/channel/ChannelHandlerContext;
            0    1     2             streamId  I
            0    1     3  windowSizeIncrement  I
            0    1     4              promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
                     Name  Flags
      ctx                  
      streamId             
      windowSizeIncrement  
      promise              

  public io.netty.channel.ChannelFuture writeFrame(io.netty.channel.ChannelHandlerContext, byte, int, io.netty.handler.codec.http2.Http2Flags, io.netty.buffer.ByteBuf, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;BILio/netty/handler/codec/http2/Http2Flags;Lio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=7
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // byte frameType
        start local 3 // int streamId
        start local 4 // io.netty.handler.codec.http2.Http2Flags flags
        start local 5 // io.netty.buffer.ByteBuf payload
        start local 6 // io.netty.channel.ChannelPromise promise
         0: .line 331
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
            aload 1 /* ctx */
            iload 2 /* frameType */
            iload 3 /* streamId */
            aload 4 /* flags */
            aload 5 /* payload */
            aload 6 /* promise */
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter.writeFrame:(Lio/netty/channel/ChannelHandlerContext;BILio/netty/handler/codec/http2/Http2Flags;Lio/netty/buffer/ByteBuf;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 6 // io.netty.channel.ChannelPromise promise
        end local 5 // io.netty.buffer.ByteBuf payload
        end local 4 // io.netty.handler.codec.http2.Http2Flags flags
        end local 3 // int streamId
        end local 2 // byte frameType
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    1     1        ctx  Lio/netty/channel/ChannelHandlerContext;
            0    1     2  frameType  B
            0    1     3   streamId  I
            0    1     4      flags  Lio/netty/handler/codec/http2/Http2Flags;
            0    1     5    payload  Lio/netty/buffer/ByteBuf;
            0    1     6    promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
           Name  Flags
      ctx        
      frameType  
      streamId   
      flags      
      payload    
      promise    

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
         0: .line 336
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter.close:()V
         1: .line 337
            return
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;

  public io.netty.handler.codec.http2.Http2Settings pollSentSettings();
    descriptor: ()Lio/netty/handler/codec/http2/Http2Settings;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
         0: .line 341
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.outstandingLocalSettingsQueue:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.poll:()Ljava/lang/Object;
            checkcast io.netty.handler.codec.http2.Http2Settings
            areturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;

  public io.netty.handler.codec.http2.Http2FrameWriter$Configuration configuration();
    descriptor: ()Lio/netty/handler/codec/http2/Http2FrameWriter$Configuration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
         0: .line 346
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.frameWriter:Lio/netty/handler/codec/http2/Http2FrameWriter;
            invokeinterface io.netty.handler.codec.http2.Http2FrameWriter.configuration:()Lio/netty/handler/codec/http2/Http2FrameWriter$Configuration;
            areturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;

  private io.netty.handler.codec.http2.Http2Stream requireStream(int);
    descriptor: (I)Lio/netty/handler/codec/http2/Http2Stream;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // int streamId
         0: .line 350
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            iload 1 /* streamId */
            invokeinterface io.netty.handler.codec.http2.Http2Connection.stream:(I)Lio/netty/handler/codec/http2/Http2Stream;
            astore 2 /* stream */
        start local 2 // io.netty.handler.codec.http2.Http2Stream stream
         1: .line 351
            aload 2 /* stream */
            ifnonnull 7
         2: .line 353
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.connection:Lio/netty/handler/codec/http2/Http2Connection;
            iload 1 /* streamId */
            invokeinterface io.netty.handler.codec.http2.Http2Connection.streamMayHaveExisted:(I)Z
            ifeq 5
         3: .line 354
            new java.lang.StringBuilder
            dup
            ldc "Stream no longer exists: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* streamId */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 3 /* message */
        start local 3 // java.lang.String message
         4: .line 355
            goto 6
        end local 3 // java.lang.String message
         5: .line 356
      StackMap locals: io.netty.handler.codec.http2.Http2Stream
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "Stream does not exist: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* streamId */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 3 /* message */
        start local 3 // java.lang.String message
         6: .line 358
      StackMap locals: java.lang.String
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            aload 3 /* message */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.String message
         7: .line 360
      StackMap locals:
      StackMap stack:
            aload 2 /* stream */
            areturn
        end local 2 // io.netty.handler.codec.http2.Http2Stream stream
        end local 1 // int streamId
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    8     1  streamId  I
            1    8     2    stream  Lio/netty/handler/codec/http2/Http2Stream;
            4    5     3   message  Ljava/lang/String;
            6    7     3   message  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      streamId  

  private void notifyLifecycleManagerOnError(io.netty.channel.ChannelFuture, io.netty.channel.ChannelHandlerContext);
    descriptor: (Lio/netty/channel/ChannelFuture;Lio/netty/channel/ChannelHandlerContext;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
        start local 1 // io.netty.channel.ChannelFuture future
        start local 2 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 447
            aload 1 /* future */
            new io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$2
            dup
            aload 0 /* this */
            aload 2 /* ctx */
            invokespecial io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$2.<init>:(Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;Lio/netty/channel/ChannelHandlerContext;)V
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
         1: .line 456
            return
        end local 2 // io.netty.channel.ChannelHandlerContext ctx
        end local 1 // io.netty.channel.ChannelFuture future
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder;
            0    2     1  future  Lio/netty/channel/ChannelFuture;
            0    2     2     ctx  Lio/netty/channel/ChannelHandlerContext;
    MethodParameters:
        Name  Flags
      future  
      ctx     final

  static int[] $SWITCH_TABLE$io$netty$handler$codec$http2$Http2Stream$State();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 40
            getstatic io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.$SWITCH_TABLE$io$netty$handler$codec$http2$Http2Stream$State:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic io.netty.handler.codec.http2.Http2Stream$State.values:()[Lio/netty/handler/codec/http2/Http2Stream$State;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic io.netty.handler.codec.http2.Http2Stream$State.CLOSED:Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual io.netty.handler.codec.http2.Http2Stream$State.ordinal:()I
            bipush 7
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic io.netty.handler.codec.http2.Http2Stream$State.HALF_CLOSED_LOCAL:Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual io.netty.handler.codec.http2.Http2Stream$State.ordinal:()I
            iconst_5
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic io.netty.handler.codec.http2.Http2Stream$State.HALF_CLOSED_REMOTE:Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual io.netty.handler.codec.http2.Http2Stream$State.ordinal:()I
            bipush 6
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic io.netty.handler.codec.http2.Http2Stream$State.IDLE:Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual io.netty.handler.codec.http2.Http2Stream$State.ordinal:()I
            iconst_1
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            getstatic io.netty.handler.codec.http2.Http2Stream$State.OPEN:Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual io.netty.handler.codec.http2.Http2Stream$State.ordinal:()I
            iconst_4
            iastore
        15: goto 17
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        16: pop
      StackMap locals:
      StackMap stack:
        17: aload 0
            getstatic io.netty.handler.codec.http2.Http2Stream$State.RESERVED_LOCAL:Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual io.netty.handler.codec.http2.Http2Stream$State.ordinal:()I
            iconst_2
            iastore
        18: goto 20
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        19: pop
      StackMap locals:
      StackMap stack:
        20: aload 0
            getstatic io.netty.handler.codec.http2.Http2Stream$State.RESERVED_REMOTE:Lio/netty/handler/codec/http2/Http2Stream$State;
            invokevirtual io.netty.handler.codec.http2.Http2Stream$State.ordinal:()I
            iconst_3
            iastore
        21: goto 23
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        22: pop
      StackMap locals:
      StackMap stack:
        23: aload 0
            dup
            putstatic io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder.$SWITCH_TABLE$io$netty$handler$codec$http2$Http2Stream$State:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
          14    15      16  Class java.lang.NoSuchFieldError
          17    18      19  Class java.lang.NoSuchFieldError
          20    21      22  Class java.lang.NoSuchFieldError
}
SourceFile: "DefaultHttp2ConnectionEncoder.java"
NestMembers:
  io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$1  io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$2  io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledBase  io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData  io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledHeaders
InnerClasses:
  io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$1
  io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$2
  public abstract FlowControlledBase = io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledBase of io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder
  private final FlowControlledData = io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData of io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder
  private final FlowControlledHeaders = io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledHeaders of io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder
  public abstract Endpoint = io.netty.handler.codec.http2.Http2Connection$Endpoint of io.netty.handler.codec.http2.Http2Connection
  public abstract Configuration = io.netty.handler.codec.http2.Http2FrameWriter$Configuration of io.netty.handler.codec.http2.Http2FrameWriter
  public abstract Configuration = io.netty.handler.codec.http2.Http2HeadersEncoder$Configuration of io.netty.handler.codec.http2.Http2HeadersEncoder
  public abstract FlowControlled = io.netty.handler.codec.http2.Http2RemoteFlowController$FlowControlled of io.netty.handler.codec.http2.Http2RemoteFlowController
  public final State = io.netty.handler.codec.http2.Http2Stream$State of io.netty.handler.codec.http2.Http2Stream