public class io.netty.handler.codec.spdy.SpdySessionHandler extends io.netty.channel.ChannelDuplexHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.handler.codec.spdy.SpdySessionHandler
  super_class: io.netty.channel.ChannelDuplexHandler
{
  private static final io.netty.handler.codec.spdy.SpdyProtocolException PROTOCOL_EXCEPTION;
    descriptor: Lio/netty/handler/codec/spdy/SpdyProtocolException;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final io.netty.handler.codec.spdy.SpdyProtocolException STREAM_CLOSED;
    descriptor: Lio/netty/handler/codec/spdy/SpdyProtocolException;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int DEFAULT_WINDOW_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 65536

  private int initialSendWindowSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int initialReceiveWindowSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private volatile int initialSessionReceiveWindowSize;
    descriptor: I
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final io.netty.handler.codec.spdy.SpdySession spdySession;
    descriptor: Lio/netty/handler/codec/spdy/SpdySession;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int lastGoodStreamId;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private static final int DEFAULT_MAX_CONCURRENT_STREAMS;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2147483647

  private int remoteConcurrentStreams;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int localConcurrentStreams;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private final java.util.concurrent.atomic.AtomicInteger pings;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private io.netty.channel.ChannelFutureListener closeSessionFutureListener;
    descriptor: Lio/netty/channel/ChannelFutureListener;
    flags: (0x0002) ACC_PRIVATE

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 36
            new io.netty.handler.codec.spdy.SpdyProtocolException
            dup
            invokespecial io.netty.handler.codec.spdy.SpdyProtocolException.<init>:()V
            ldc Lio/netty/handler/codec/spdy/SpdySessionHandler;
            ldc "handleOutboundMessage(...)"
         1: .line 35
            invokestatic io.netty.util.internal.ThrowableUtil.unknownStackTrace:(Ljava/lang/Throwable;Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Throwable;
            checkcast io.netty.handler.codec.spdy.SpdyProtocolException
            putstatic io.netty.handler.codec.spdy.SpdySessionHandler.PROTOCOL_EXCEPTION:Lio/netty/handler/codec/spdy/SpdyProtocolException;
         2: .line 38
            new io.netty.handler.codec.spdy.SpdyProtocolException
            dup
            ldc "Stream closed"
            invokespecial io.netty.handler.codec.spdy.SpdyProtocolException.<init>:(Ljava/lang/String;)V
            ldc Lio/netty/handler/codec/spdy/SpdySessionHandler;
            ldc "removeStream(...)"
         3: .line 37
            invokestatic io.netty.util.internal.ThrowableUtil.unknownStackTrace:(Ljava/lang/Throwable;Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Throwable;
            checkcast io.netty.handler.codec.spdy.SpdyProtocolException
            putstatic io.netty.handler.codec.spdy.SpdySessionHandler.STREAM_CLOSED:Lio/netty/handler/codec/spdy/SpdyProtocolException;
         4: .line 48
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.netty.handler.codec.spdy.SpdyVersion, boolean);
    descriptor: (Lio/netty/handler/codec/spdy/SpdyVersion;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.handler.codec.spdy.SpdyVersion version
        start local 2 // boolean server
         0: .line 71
            aload 0 /* this */
            invokespecial io.netty.channel.ChannelDuplexHandler.<init>:()V
         1: .line 41
            aload 0 /* this */
            ldc 65536
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.initialSendWindowSize:I
         2: .line 42
            aload 0 /* this */
            ldc 65536
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.initialReceiveWindowSize:I
         3: .line 43
            aload 0 /* this */
            ldc 65536
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.initialSessionReceiveWindowSize:I
         4: .line 45
            aload 0 /* this */
            new io.netty.handler.codec.spdy.SpdySession
            dup
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialSendWindowSize:I
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialReceiveWindowSize:I
            invokespecial io.netty.handler.codec.spdy.SpdySession.<init>:(II)V
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
         5: .line 49
            aload 0 /* this */
            ldc 2147483647
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.remoteConcurrentStreams:I
         6: .line 50
            aload 0 /* this */
            ldc 2147483647
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.localConcurrentStreams:I
         7: .line 52
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicInteger
            dup
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.pings:Ljava/util/concurrent/atomic/AtomicInteger;
         8: .line 72
            aload 1 /* version */
            ifnonnull 10
         9: .line 73
            new java.lang.NullPointerException
            dup
            ldc "version"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 75
      StackMap locals: io.netty.handler.codec.spdy.SpdySessionHandler io.netty.handler.codec.spdy.SpdyVersion int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* server */
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.server:Z
        11: .line 76
            aload 0 /* this */
            aload 1 /* version */
            invokevirtual io.netty.handler.codec.spdy.SpdyVersion.getMinorVersion:()I
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.minorVersion:I
        12: .line 77
            return
        end local 2 // boolean server
        end local 1 // io.netty.handler.codec.spdy.SpdyVersion version
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0   13     1  version  Lio/netty/handler/codec/spdy/SpdyVersion;
            0   13     2   server  Z
    MethodParameters:
         Name  Flags
      version  
      server   

  public void setSessionReceiveWindowSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // int sessionReceiveWindowSize
         0: .line 80
            iload 1 /* sessionReceiveWindowSize */
            ifge 2
         1: .line 81
            new java.lang.IllegalArgumentException
            dup
            ldc "sessionReceiveWindowSize"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* sessionReceiveWindowSize */
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.initialSessionReceiveWindowSize:I
         3: .line 90
            return
        end local 1 // int sessionReceiveWindowSize
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    4     0                      this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    4     1  sessionReceiveWindowSize  I
    MethodParameters:
                          Name  Flags
      sessionReceiveWindowSize  

  public void channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=3
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.Object msg
         0: .line 94
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyDataFrame
            ifeq 52
         1: .line 118
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdyDataFrame
            astore 3 /* spdyDataFrame */
        start local 3 // io.netty.handler.codec.spdy.SpdyDataFrame spdyDataFrame
         2: .line 119
            aload 3 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.streamId:()I
            istore 4 /* streamId */
        start local 4 // int streamId
         3: .line 121
            iconst_m1
            aload 3 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.content:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            imul
            istore 5 /* deltaWindowSize */
        start local 5 // int deltaWindowSize
         4: .line 123
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iconst_0
            iload 5 /* deltaWindowSize */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateReceiveWindowSize:(II)I
         5: .line 122
            istore 6 /* newSessionWindowSize */
        start local 6 // int newSessionWindowSize
         6: .line 126
            iload 6 /* newSessionWindowSize */
            ifge 9
         7: .line 127
            aload 0 /* this */
            aload 1 /* ctx */
            getstatic io.netty.handler.codec.spdy.SpdySessionStatus.PROTOCOL_ERROR:Lio/netty/handler/codec/spdy/SpdySessionStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueSessionError:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdySessionStatus;)V
         8: .line 128
            return
         9: .line 132
      StackMap locals: io.netty.handler.codec.spdy.SpdySessionHandler io.netty.channel.ChannelHandlerContext java.lang.Object io.netty.handler.codec.spdy.SpdyDataFrame int int int
      StackMap stack:
            iload 6 /* newSessionWindowSize */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialSessionReceiveWindowSize:I
            iconst_2
            idiv
            if_icmpgt 15
        10: .line 133
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialSessionReceiveWindowSize:I
            iload 6 /* newSessionWindowSize */
            isub
            istore 7 /* sessionDeltaWindowSize */
        start local 7 // int sessionDeltaWindowSize
        11: .line 134
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iconst_0
            iload 7 /* sessionDeltaWindowSize */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateReceiveWindowSize:(II)I
            pop
        12: .line 136
            new io.netty.handler.codec.spdy.DefaultSpdyWindowUpdateFrame
            dup
            iconst_0
            iload 7 /* sessionDeltaWindowSize */
            invokespecial io.netty.handler.codec.spdy.DefaultSpdyWindowUpdateFrame.<init>:(II)V
        13: .line 135
            astore 8 /* spdyWindowUpdateFrame */
        start local 8 // io.netty.handler.codec.spdy.SpdyWindowUpdateFrame spdyWindowUpdateFrame
        14: .line 137
            aload 1 /* ctx */
            aload 8 /* spdyWindowUpdateFrame */
            invokeinterface io.netty.channel.ChannelHandlerContext.writeAndFlush:(Ljava/lang/Object;)Lio/netty/channel/ChannelFuture;
            pop
        end local 8 // io.netty.handler.codec.spdy.SpdyWindowUpdateFrame spdyWindowUpdateFrame
        end local 7 // int sessionDeltaWindowSize
        15: .line 142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.isActiveStream:(I)Z
            ifne 23
        16: .line 143
            aload 3 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.release:()Z
            pop
        17: .line 144
            iload 4 /* streamId */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.lastGoodStreamId:I
            if_icmpgt 20
        18: .line 145
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.PROTOCOL_ERROR:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
        19: .line 146
            goto 22
      StackMap locals:
      StackMap stack:
        20: aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.sentGoAwayFrame:Z
            ifne 22
        21: .line 147
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.INVALID_STREAM:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
        22: .line 149
      StackMap locals:
      StackMap stack:
            return
        23: .line 154
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.isRemoteSideClosed:(I)Z
            ifeq 27
        24: .line 155
            aload 3 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.release:()Z
            pop
        25: .line 156
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.STREAM_ALREADY_CLOSED:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
        26: .line 157
            return
        27: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            ifne 31
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.hasReceivedReply:(I)Z
            ifne 31
        28: .line 162
            aload 3 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.release:()Z
            pop
        29: .line 163
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.PROTOCOL_ERROR:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
        30: .line 164
            return
        31: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            iload 5 /* deltaWindowSize */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateReceiveWindowSize:(II)I
            istore 7 /* newWindowSize */
        start local 7 // int newWindowSize
        32: .line 181
            iload 7 /* newWindowSize */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.getReceiveWindowSizeLowerBound:(I)I
            if_icmpge 36
        33: .line 182
            aload 3 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.release:()Z
            pop
        34: .line 183
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.FLOW_CONTROL_ERROR:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
        35: .line 184
            return
        36: .line 189
      StackMap locals: int
      StackMap stack:
            iload 7 /* newWindowSize */
            ifge 43
        37: .line 190
            goto 42
        38: .line 191
      StackMap locals:
      StackMap stack:
            new io.netty.handler.codec.spdy.DefaultSpdyDataFrame
            dup
        39: .line 192
            iload 4 /* streamId */
            aload 3 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.content:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialReceiveWindowSize:I
            invokevirtual io.netty.buffer.ByteBuf.readRetainedSlice:(I)Lio/netty/buffer/ByteBuf;
        40: .line 191
            invokespecial io.netty.handler.codec.spdy.DefaultSpdyDataFrame.<init>:(ILio/netty/buffer/ByteBuf;)V
            astore 8 /* partialDataFrame */
        start local 8 // io.netty.handler.codec.spdy.SpdyDataFrame partialDataFrame
        41: .line 193
            aload 1 /* ctx */
            aload 8 /* partialDataFrame */
            invokeinterface io.netty.channel.ChannelHandlerContext.writeAndFlush:(Ljava/lang/Object;)Lio/netty/channel/ChannelFuture;
            pop
        end local 8 // io.netty.handler.codec.spdy.SpdyDataFrame partialDataFrame
        42: .line 190
      StackMap locals:
      StackMap stack:
            aload 3 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.content:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialReceiveWindowSize:I
            if_icmpgt 38
        43: .line 198
      StackMap locals:
      StackMap stack:
            iload 7 /* newWindowSize */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialReceiveWindowSize:I
            iconst_2
            idiv
            if_icmpgt 49
            aload 3 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.isLast:()Z
            ifne 49
        44: .line 199
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialReceiveWindowSize:I
            iload 7 /* newWindowSize */
            isub
            istore 8 /* streamDeltaWindowSize */
        start local 8 // int streamDeltaWindowSize
        45: .line 200
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            iload 8 /* streamDeltaWindowSize */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateReceiveWindowSize:(II)I
            pop
        46: .line 202
            new io.netty.handler.codec.spdy.DefaultSpdyWindowUpdateFrame
            dup
            iload 4 /* streamId */
            iload 8 /* streamDeltaWindowSize */
            invokespecial io.netty.handler.codec.spdy.DefaultSpdyWindowUpdateFrame.<init>:(II)V
        47: .line 201
            astore 9 /* spdyWindowUpdateFrame */
        start local 9 // io.netty.handler.codec.spdy.SpdyWindowUpdateFrame spdyWindowUpdateFrame
        48: .line 203
            aload 1 /* ctx */
            aload 9 /* spdyWindowUpdateFrame */
            invokeinterface io.netty.channel.ChannelHandlerContext.writeAndFlush:(Ljava/lang/Object;)Lio/netty/channel/ChannelFuture;
            pop
        end local 9 // io.netty.handler.codec.spdy.SpdyWindowUpdateFrame spdyWindowUpdateFrame
        end local 8 // int streamDeltaWindowSize
        49: .line 207
      StackMap locals:
      StackMap stack:
            aload 3 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.isLast:()Z
            ifeq 143
        50: .line 208
            aload 0 /* this */
            iload 4 /* streamId */
            iconst_1
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.newSucceededFuture:()Lio/netty/channel/ChannelFuture;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.halfCloseStream:(IZLio/netty/channel/ChannelFuture;)V
        end local 7 // int newWindowSize
        end local 6 // int newSessionWindowSize
        end local 5 // int deltaWindowSize
        end local 4 // int streamId
        end local 3 // io.netty.handler.codec.spdy.SpdyDataFrame spdyDataFrame
        51: .line 211
            goto 143
      StackMap locals: io.netty.handler.codec.spdy.SpdySessionHandler io.netty.channel.ChannelHandlerContext java.lang.Object
      StackMap stack:
        52: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdySynStreamFrame
            ifeq 69
        53: .line 227
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdySynStreamFrame
            astore 3 /* spdySynStreamFrame */
        start local 3 // io.netty.handler.codec.spdy.SpdySynStreamFrame spdySynStreamFrame
        54: .line 228
            aload 3 /* spdySynStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynStreamFrame.streamId:()I
            istore 4 /* streamId */
        start local 4 // int streamId
        55: .line 231
            aload 3 /* spdySynStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynStreamFrame.isInvalid:()Z
            ifne 58
        56: .line 232
            aload 0 /* this */
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            ifeq 58
        57: .line 233
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.isActiveStream:(I)Z
            ifeq 60
        58: .line 234
      StackMap locals: io.netty.handler.codec.spdy.SpdySynStreamFrame int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.PROTOCOL_ERROR:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
        59: .line 235
            return
        60: .line 239
      StackMap locals:
      StackMap stack:
            iload 4 /* streamId */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.lastGoodStreamId:I
            if_icmpgt 63
        61: .line 240
            aload 0 /* this */
            aload 1 /* ctx */
            getstatic io.netty.handler.codec.spdy.SpdySessionStatus.PROTOCOL_ERROR:Lio/netty/handler/codec/spdy/SpdySessionStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueSessionError:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdySessionStatus;)V
        62: .line 241
            return
        63: .line 245
      StackMap locals:
      StackMap stack:
            aload 3 /* spdySynStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynStreamFrame.priority:()B
            istore 5 /* priority */
        start local 5 // byte priority
        64: .line 246
            aload 3 /* spdySynStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynStreamFrame.isLast:()Z
            istore 6 /* remoteSideClosed */
        start local 6 // boolean remoteSideClosed
        65: .line 247
            aload 3 /* spdySynStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynStreamFrame.isUnidirectional:()Z
            istore 7 /* localSideClosed */
        start local 7 // boolean localSideClosed
        66: .line 248
            aload 0 /* this */
            iload 4 /* streamId */
            iload 5 /* priority */
            iload 6 /* remoteSideClosed */
            iload 7 /* localSideClosed */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.acceptStream:(IBZZ)Z
            ifne 143
        67: .line 249
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.REFUSED_STREAM:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
        68: .line 250
            return
        end local 7 // boolean localSideClosed
        end local 6 // boolean remoteSideClosed
        end local 5 // byte priority
        end local 4 // int streamId
        end local 3 // io.netty.handler.codec.spdy.SpdySynStreamFrame spdySynStreamFrame
        69: .line 253
      StackMap locals:
      StackMap stack:
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdySynReplyFrame
            ifeq 84
        70: .line 262
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdySynReplyFrame
            astore 3 /* spdySynReplyFrame */
        start local 3 // io.netty.handler.codec.spdy.SpdySynReplyFrame spdySynReplyFrame
        71: .line 263
            aload 3 /* spdySynReplyFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynReplyFrame.streamId:()I
            istore 4 /* streamId */
        start local 4 // int streamId
        72: .line 266
            aload 3 /* spdySynReplyFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynReplyFrame.isInvalid:()Z
            ifne 75
        73: .line 267
            aload 0 /* this */
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            ifne 75
        74: .line 268
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.isRemoteSideClosed:(I)Z
            ifeq 77
        75: .line 269
      StackMap locals: io.netty.handler.codec.spdy.SpdySynReplyFrame int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.INVALID_STREAM:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
        76: .line 270
            return
        77: .line 274
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.hasReceivedReply:(I)Z
            ifeq 80
        78: .line 275
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.STREAM_IN_USE:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
        79: .line 276
            return
        80: .line 279
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.receivedReply:(I)V
        81: .line 282
            aload 3 /* spdySynReplyFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynReplyFrame.isLast:()Z
            ifeq 143
        82: .line 283
            aload 0 /* this */
            iload 4 /* streamId */
            iconst_1
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.newSucceededFuture:()Lio/netty/channel/ChannelFuture;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.halfCloseStream:(IZLio/netty/channel/ChannelFuture;)V
        end local 4 // int streamId
        end local 3 // io.netty.handler.codec.spdy.SpdySynReplyFrame spdySynReplyFrame
        83: .line 286
            goto 143
      StackMap locals:
      StackMap stack:
        84: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyRstStreamFrame
            ifeq 88
        85: .line 297
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdyRstStreamFrame
            astore 3 /* spdyRstStreamFrame */
        start local 3 // io.netty.handler.codec.spdy.SpdyRstStreamFrame spdyRstStreamFrame
        86: .line 298
            aload 0 /* this */
            aload 3 /* spdyRstStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyRstStreamFrame.streamId:()I
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.newSucceededFuture:()Lio/netty/channel/ChannelFuture;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.removeStream:(ILio/netty/channel/ChannelFuture;)V
        end local 3 // io.netty.handler.codec.spdy.SpdyRstStreamFrame spdyRstStreamFrame
        87: .line 300
            goto 143
      StackMap locals:
      StackMap stack:
        88: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdySettingsFrame
            ifeq 106
        89: .line 302
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdySettingsFrame
            astore 3 /* spdySettingsFrame */
        start local 3 // io.netty.handler.codec.spdy.SpdySettingsFrame spdySettingsFrame
        90: .line 304
            aload 3 /* spdySettingsFrame */
            iconst_0
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.getValue:(I)I
            istore 4 /* settingsMinorVersion */
        start local 4 // int settingsMinorVersion
        91: .line 305
            iload 4 /* settingsMinorVersion */
            iflt 94
            iload 4 /* settingsMinorVersion */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.minorVersion:I
            if_icmpeq 94
        92: .line 307
            aload 0 /* this */
            aload 1 /* ctx */
            getstatic io.netty.handler.codec.spdy.SpdySessionStatus.PROTOCOL_ERROR:Lio/netty/handler/codec/spdy/SpdySessionStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueSessionError:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdySessionStatus;)V
        93: .line 308
            return
        94: .line 312
      StackMap locals: io.netty.handler.codec.spdy.SpdySettingsFrame int
      StackMap stack:
            aload 3 /* spdySettingsFrame */
            iconst_4
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.getValue:(I)I
        95: .line 311
            istore 5 /* newConcurrentStreams */
        start local 5 // int newConcurrentStreams
        96: .line 313
            iload 5 /* newConcurrentStreams */
            iflt 98
        97: .line 314
            aload 0 /* this */
            iload 5 /* newConcurrentStreams */
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.remoteConcurrentStreams:I
        98: .line 320
      StackMap locals: int
      StackMap stack:
            aload 3 /* spdySettingsFrame */
            bipush 7
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.isPersisted:(I)Z
            ifeq 100
        99: .line 321
            aload 3 /* spdySettingsFrame */
            bipush 7
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.removeValue:(I)Lio/netty/handler/codec/spdy/SpdySettingsFrame;
            pop
       100: .line 323
      StackMap locals:
      StackMap stack:
            aload 3 /* spdySettingsFrame */
            bipush 7
            iconst_0
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.setPersistValue:(IZ)Lio/netty/handler/codec/spdy/SpdySettingsFrame;
            pop
       101: .line 326
            aload 3 /* spdySettingsFrame */
            bipush 7
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.getValue:(I)I
       102: .line 325
            istore 6 /* newInitialWindowSize */
        start local 6 // int newInitialWindowSize
       103: .line 327
            iload 6 /* newInitialWindowSize */
            iflt 143
       104: .line 328
            aload 0 /* this */
            iload 6 /* newInitialWindowSize */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.updateInitialSendWindowSize:(I)V
        end local 6 // int newInitialWindowSize
        end local 5 // int newConcurrentStreams
        end local 4 // int settingsMinorVersion
        end local 3 // io.netty.handler.codec.spdy.SpdySettingsFrame spdySettingsFrame
       105: .line 331
            goto 143
      StackMap locals:
      StackMap stack:
       106: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyPingFrame
            ifeq 115
       107: .line 342
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdyPingFrame
            astore 3 /* spdyPingFrame */
        start local 3 // io.netty.handler.codec.spdy.SpdyPingFrame spdyPingFrame
       108: .line 344
            aload 0 /* this */
            aload 3 /* spdyPingFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyPingFrame.id:()I
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            ifeq 111
       109: .line 345
            aload 1 /* ctx */
            aload 3 /* spdyPingFrame */
            invokeinterface io.netty.channel.ChannelHandlerContext.writeAndFlush:(Ljava/lang/Object;)Lio/netty/channel/ChannelFuture;
            pop
       110: .line 346
            return
       111: .line 350
      StackMap locals: io.netty.handler.codec.spdy.SpdyPingFrame
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.pings:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            ifne 113
       112: .line 351
            return
       113: .line 353
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.pings:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.getAndDecrement:()I
            pop
        end local 3 // io.netty.handler.codec.spdy.SpdyPingFrame spdyPingFrame
       114: .line 355
            goto 143
      StackMap locals:
      StackMap stack:
       115: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyGoAwayFrame
            ifeq 118
       116: .line 357
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.receivedGoAwayFrame:Z
       117: .line 359
            goto 143
      StackMap locals:
      StackMap stack:
       118: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyHeadersFrame
            ifeq 130
       119: .line 361
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdyHeadersFrame
            astore 3 /* spdyHeadersFrame */
        start local 3 // io.netty.handler.codec.spdy.SpdyHeadersFrame spdyHeadersFrame
       120: .line 362
            aload 3 /* spdyHeadersFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyHeadersFrame.streamId:()I
            istore 4 /* streamId */
        start local 4 // int streamId
       121: .line 365
            aload 3 /* spdyHeadersFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyHeadersFrame.isInvalid:()Z
            ifeq 124
       122: .line 366
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.PROTOCOL_ERROR:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
       123: .line 367
            return
       124: .line 370
      StackMap locals: io.netty.handler.codec.spdy.SpdyHeadersFrame int
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.isRemoteSideClosed:(I)Z
            ifeq 127
       125: .line 371
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.INVALID_STREAM:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
       126: .line 372
            return
       127: .line 376
      StackMap locals:
      StackMap stack:
            aload 3 /* spdyHeadersFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyHeadersFrame.isLast:()Z
            ifeq 143
       128: .line 377
            aload 0 /* this */
            iload 4 /* streamId */
            iconst_1
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.newSucceededFuture:()Lio/netty/channel/ChannelFuture;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.halfCloseStream:(IZLio/netty/channel/ChannelFuture;)V
        end local 4 // int streamId
        end local 3 // io.netty.handler.codec.spdy.SpdyHeadersFrame spdyHeadersFrame
       129: .line 380
            goto 143
      StackMap locals:
      StackMap stack:
       130: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyWindowUpdateFrame
            ifeq 143
       131: .line 392
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdyWindowUpdateFrame
            astore 3 /* spdyWindowUpdateFrame */
        start local 3 // io.netty.handler.codec.spdy.SpdyWindowUpdateFrame spdyWindowUpdateFrame
       132: .line 393
            aload 3 /* spdyWindowUpdateFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyWindowUpdateFrame.streamId:()I
            istore 4 /* streamId */
        start local 4 // int streamId
       133: .line 394
            aload 3 /* spdyWindowUpdateFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyWindowUpdateFrame.deltaWindowSize:()I
            istore 5 /* deltaWindowSize */
        start local 5 // int deltaWindowSize
       134: .line 397
            iload 4 /* streamId */
            ifeq 136
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.isLocalSideClosed:(I)Z
            ifeq 136
       135: .line 398
            return
       136: .line 402
      StackMap locals: io.netty.handler.codec.spdy.SpdyWindowUpdateFrame int int
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 4 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.getSendWindowSize:(I)I
            ldc 2147483647
            iload 5 /* deltaWindowSize */
            isub
            if_icmple 142
       137: .line 403
            iload 4 /* streamId */
            ifne 140
       138: .line 404
            aload 0 /* this */
            aload 1 /* ctx */
            getstatic io.netty.handler.codec.spdy.SpdySessionStatus.PROTOCOL_ERROR:Lio/netty/handler/codec/spdy/SpdySessionStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueSessionError:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdySessionStatus;)V
       139: .line 405
            goto 141
       140: .line 406
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdyStreamStatus.FLOW_CONTROL_ERROR:Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueStreamError:(Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
       141: .line 408
      StackMap locals:
      StackMap stack:
            return
       142: .line 411
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            iload 4 /* streamId */
            iload 5 /* deltaWindowSize */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.updateSendWindowSize:(Lio/netty/channel/ChannelHandlerContext;II)V
        end local 5 // int deltaWindowSize
        end local 4 // int streamId
        end local 3 // io.netty.handler.codec.spdy.SpdyWindowUpdateFrame spdyWindowUpdateFrame
       143: .line 414
      StackMap locals:
      StackMap stack:
            aload 1 /* ctx */
            aload 2 /* msg */
            invokeinterface io.netty.channel.ChannelHandlerContext.fireChannelRead:(Ljava/lang/Object;)Lio/netty/channel/ChannelHandlerContext;
            pop
       144: .line 415
            return
        end local 2 // java.lang.Object msg
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0  145     0                    this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0  145     1                     ctx  Lio/netty/channel/ChannelHandlerContext;
            0  145     2                     msg  Ljava/lang/Object;
            2   51     3           spdyDataFrame  Lio/netty/handler/codec/spdy/SpdyDataFrame;
            3   51     4                streamId  I
            4   51     5         deltaWindowSize  I
            6   51     6    newSessionWindowSize  I
           11   15     7  sessionDeltaWindowSize  I
           14   15     8   spdyWindowUpdateFrame  Lio/netty/handler/codec/spdy/SpdyWindowUpdateFrame;
           32   51     7           newWindowSize  I
           41   42     8        partialDataFrame  Lio/netty/handler/codec/spdy/SpdyDataFrame;
           45   49     8   streamDeltaWindowSize  I
           48   49     9   spdyWindowUpdateFrame  Lio/netty/handler/codec/spdy/SpdyWindowUpdateFrame;
           54   69     3      spdySynStreamFrame  Lio/netty/handler/codec/spdy/SpdySynStreamFrame;
           55   69     4                streamId  I
           64   69     5                priority  B
           65   69     6        remoteSideClosed  Z
           66   69     7         localSideClosed  Z
           71   83     3       spdySynReplyFrame  Lio/netty/handler/codec/spdy/SpdySynReplyFrame;
           72   83     4                streamId  I
           86   87     3      spdyRstStreamFrame  Lio/netty/handler/codec/spdy/SpdyRstStreamFrame;
           90  105     3       spdySettingsFrame  Lio/netty/handler/codec/spdy/SpdySettingsFrame;
           91  105     4    settingsMinorVersion  I
           96  105     5    newConcurrentStreams  I
          103  105     6    newInitialWindowSize  I
          108  114     3           spdyPingFrame  Lio/netty/handler/codec/spdy/SpdyPingFrame;
          120  129     3        spdyHeadersFrame  Lio/netty/handler/codec/spdy/SpdyHeadersFrame;
          121  129     4                streamId  I
          132  143     3   spdyWindowUpdateFrame  Lio/netty/handler/codec/spdy/SpdyWindowUpdateFrame;
          133  143     4                streamId  I
          134  143     5         deltaWindowSize  I
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   
      msg   

  public void channelInactive(io.netty.channel.ChannelHandlerContext);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 419
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            invokevirtual io.netty.handler.codec.spdy.SpdySession.activeStreams:()Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: io.netty.handler.codec.spdy.SpdySessionHandler io.netty.channel.ChannelHandlerContext top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 2 /* streamId */
        start local 2 // java.lang.Integer streamId
         2: .line 420
            aload 0 /* this */
            aload 2 /* streamId */
            invokevirtual java.lang.Integer.intValue:()I
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.newSucceededFuture:()Lio/netty/channel/ChannelFuture;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.removeStream:(ILio/netty/channel/ChannelFuture;)V
        end local 2 // java.lang.Integer streamId
         3: .line 419
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 422
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.fireChannelInactive:()Lio/netty/channel/ChannelHandlerContext;
            pop
         5: .line 423
            return
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    6     1       ctx  Lio/netty/channel/ChannelHandlerContext;
            2    3     2  streamId  Ljava/lang/Integer;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   

  public void exceptionCaught(io.netty.channel.ChannelHandlerContext, java.lang.Throwable);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.Throwable cause
         0: .line 427
            aload 2 /* cause */
            instanceof io.netty.handler.codec.spdy.SpdyProtocolException
            ifeq 2
         1: .line 428
            aload 0 /* this */
            aload 1 /* ctx */
            getstatic io.netty.handler.codec.spdy.SpdySessionStatus.PROTOCOL_ERROR:Lio/netty/handler/codec/spdy/SpdySessionStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.issueSessionError:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdySessionStatus;)V
         2: .line 431
      StackMap locals:
      StackMap stack:
            aload 1 /* ctx */
            aload 2 /* cause */
            invokeinterface io.netty.channel.ChannelHandlerContext.fireExceptionCaught:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelHandlerContext;
            pop
         3: .line 432
            return
        end local 2 // java.lang.Throwable cause
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    4     1    ctx  Lio/netty/channel/ChannelHandlerContext;
            0    4     2  cause  Ljava/lang/Throwable;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
       Name  Flags
      ctx    
      cause  

  public void close(io.netty.channel.ChannelHandlerContext, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 436
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* promise */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.sendGoAwayFrame:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)V
         1: .line 437
            return
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    2     1      ctx  Lio/netty/channel/ChannelHandlerContext;
            0    2     2  promise  Lio/netty/channel/ChannelPromise;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
         Name  Flags
      ctx      
      promise  

  public void write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.Object msg
        start local 3 // io.netty.channel.ChannelPromise promise
         0: .line 441
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyDataFrame
            ifne 9
         1: .line 442
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdySynStreamFrame
            ifne 9
         2: .line 443
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdySynReplyFrame
            ifne 9
         3: .line 444
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyRstStreamFrame
            ifne 9
         4: .line 445
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdySettingsFrame
            ifne 9
         5: .line 446
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyPingFrame
            ifne 9
         6: .line 447
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyGoAwayFrame
            ifne 9
         7: .line 448
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyHeadersFrame
            ifne 9
         8: .line 449
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyWindowUpdateFrame
            ifeq 11
         9: .line 451
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* msg */
            aload 3 /* promise */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.handleOutboundMessage:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
        10: .line 452
            goto 12
        11: .line 453
      StackMap locals:
      StackMap stack:
            aload 1 /* ctx */
            aload 2 /* msg */
            aload 3 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.write:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
        12: .line 455
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.netty.channel.ChannelPromise promise
        end local 2 // java.lang.Object msg
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0   13     1      ctx  Lio/netty/channel/ChannelHandlerContext;
            0   13     2      msg  Ljava/lang/Object;
            0   13     3  promise  Lio/netty/channel/ChannelPromise;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
         Name  Flags
      ctx      
      msg      
      promise  

  private void handleOutboundMessage(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=11, args_size=4
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.Object msg
        start local 3 // io.netty.channel.ChannelPromise promise
         0: .line 458
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyDataFrame
            ifeq 31
         1: .line 460
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdyDataFrame
            astore 4 /* spdyDataFrame */
        start local 4 // io.netty.handler.codec.spdy.SpdyDataFrame spdyDataFrame
         2: .line 461
            aload 4 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.streamId:()I
            istore 5 /* streamId */
        start local 5 // int streamId
         3: .line 464
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 5 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.isLocalSideClosed:(I)Z
            ifeq 7
         4: .line 465
            aload 4 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.release:()Z
            pop
         5: .line 466
            aload 3 /* promise */
            getstatic io.netty.handler.codec.spdy.SpdySessionHandler.PROTOCOL_EXCEPTION:Lio/netty/handler/codec/spdy/SpdyProtocolException;
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
         6: .line 467
            return
         7: .line 483
      StackMap locals: io.netty.handler.codec.spdy.SpdyDataFrame int
      StackMap stack:
            aload 4 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.content:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            istore 6 /* dataLength */
        start local 6 // int dataLength
         8: .line 484
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 5 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.getSendWindowSize:(I)I
            istore 7 /* sendWindowSize */
        start local 7 // int sendWindowSize
         9: .line 485
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iconst_0
            invokevirtual io.netty.handler.codec.spdy.SpdySession.getSendWindowSize:(I)I
            istore 8 /* sessionSendWindowSize */
        start local 8 // int sessionSendWindowSize
        10: .line 486
            iload 7 /* sendWindowSize */
            iload 8 /* sessionSendWindowSize */
            invokestatic java.lang.Math.min:(II)I
            istore 7 /* sendWindowSize */
        11: .line 488
            iload 7 /* sendWindowSize */
            ifgt 14
        12: .line 490
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 5 /* streamId */
            new io.netty.handler.codec.spdy.SpdySession$PendingWrite
            dup
            aload 4 /* spdyDataFrame */
            aload 3 /* promise */
            invokespecial io.netty.handler.codec.spdy.SpdySession$PendingWrite.<init>:(Lio/netty/handler/codec/spdy/SpdyDataFrame;Lio/netty/channel/ChannelPromise;)V
            invokevirtual io.netty.handler.codec.spdy.SpdySession.putPendingWrite:(ILio/netty/handler/codec/spdy/SpdySession$PendingWrite;)Z
            pop
        13: .line 491
            return
        14: .line 492
      StackMap locals: int int int
      StackMap stack:
            iload 7 /* sendWindowSize */
            iload 6 /* dataLength */
            if_icmpge 24
        15: .line 494
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 5 /* streamId */
            iconst_m1
            iload 7 /* sendWindowSize */
            imul
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateSendWindowSize:(II)I
            pop
        16: .line 495
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iconst_0
            iconst_m1
            iload 7 /* sendWindowSize */
            imul
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateSendWindowSize:(II)I
            pop
        17: .line 498
            new io.netty.handler.codec.spdy.DefaultSpdyDataFrame
            dup
        18: .line 499
            iload 5 /* streamId */
            aload 4 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.content:()Lio/netty/buffer/ByteBuf;
            iload 7 /* sendWindowSize */
            invokevirtual io.netty.buffer.ByteBuf.readRetainedSlice:(I)Lio/netty/buffer/ByteBuf;
        19: .line 498
            invokespecial io.netty.handler.codec.spdy.DefaultSpdyDataFrame.<init>:(ILio/netty/buffer/ByteBuf;)V
            astore 9 /* partialDataFrame */
        start local 9 // io.netty.handler.codec.spdy.SpdyDataFrame partialDataFrame
        20: .line 502
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 5 /* streamId */
            new io.netty.handler.codec.spdy.SpdySession$PendingWrite
            dup
            aload 4 /* spdyDataFrame */
            aload 3 /* promise */
            invokespecial io.netty.handler.codec.spdy.SpdySession$PendingWrite.<init>:(Lio/netty/handler/codec/spdy/SpdyDataFrame;Lio/netty/channel/ChannelPromise;)V
            invokevirtual io.netty.handler.codec.spdy.SpdySession.putPendingWrite:(ILio/netty/handler/codec/spdy/SpdySession$PendingWrite;)Z
            pop
        21: .line 506
            aload 1 /* ctx */
            astore 10 /* context */
        start local 10 // io.netty.channel.ChannelHandlerContext context
        22: .line 507
            aload 1 /* ctx */
            aload 9 /* partialDataFrame */
            invokeinterface io.netty.channel.ChannelHandlerContext.write:(Ljava/lang/Object;)Lio/netty/channel/ChannelFuture;
            new io.netty.handler.codec.spdy.SpdySessionHandler$1
            dup
            aload 0 /* this */
            aload 10 /* context */
            invokespecial io.netty.handler.codec.spdy.SpdySessionHandler$1.<init>:(Lio/netty/handler/codec/spdy/SpdySessionHandler;Lio/netty/channel/ChannelHandlerContext;)V
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
        23: .line 515
            return
        end local 10 // io.netty.channel.ChannelHandlerContext context
        end local 9 // io.netty.handler.codec.spdy.SpdyDataFrame partialDataFrame
        24: .line 518
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 5 /* streamId */
            iconst_m1
            iload 6 /* dataLength */
            imul
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateSendWindowSize:(II)I
            pop
        25: .line 519
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iconst_0
            iconst_m1
            iload 6 /* dataLength */
            imul
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateSendWindowSize:(II)I
            pop
        26: .line 523
            aload 1 /* ctx */
            astore 9 /* context */
        start local 9 // io.netty.channel.ChannelHandlerContext context
        27: .line 524
            aload 3 /* promise */
            new io.netty.handler.codec.spdy.SpdySessionHandler$2
            dup
            aload 0 /* this */
            aload 9 /* context */
            invokespecial io.netty.handler.codec.spdy.SpdySessionHandler$2.<init>:(Lio/netty/handler/codec/spdy/SpdySessionHandler;Lio/netty/channel/ChannelHandlerContext;)V
            invokeinterface io.netty.channel.ChannelPromise.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelPromise;
            pop
        end local 9 // io.netty.channel.ChannelHandlerContext context
        28: .line 535
            aload 4 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.isLast:()Z
            ifeq 98
        29: .line 536
            aload 0 /* this */
            iload 5 /* streamId */
            iconst_0
            aload 3 /* promise */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.halfCloseStream:(IZLio/netty/channel/ChannelFuture;)V
        end local 8 // int sessionSendWindowSize
        end local 7 // int sendWindowSize
        end local 6 // int dataLength
        end local 5 // int streamId
        end local 4 // io.netty.handler.codec.spdy.SpdyDataFrame spdyDataFrame
        30: .line 539
            goto 98
      StackMap locals: io.netty.handler.codec.spdy.SpdySessionHandler io.netty.channel.ChannelHandlerContext java.lang.Object io.netty.channel.ChannelPromise
      StackMap stack:
        31: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdySynStreamFrame
            ifeq 43
        32: .line 541
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdySynStreamFrame
            astore 4 /* spdySynStreamFrame */
        start local 4 // io.netty.handler.codec.spdy.SpdySynStreamFrame spdySynStreamFrame
        33: .line 542
            aload 4 /* spdySynStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynStreamFrame.streamId:()I
            istore 5 /* streamId */
        start local 5 // int streamId
        34: .line 544
            aload 0 /* this */
            iload 5 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            ifeq 37
        35: .line 545
            aload 3 /* promise */
            getstatic io.netty.handler.codec.spdy.SpdySessionHandler.PROTOCOL_EXCEPTION:Lio/netty/handler/codec/spdy/SpdyProtocolException;
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
        36: .line 546
            return
        37: .line 549
      StackMap locals: io.netty.handler.codec.spdy.SpdySynStreamFrame int
      StackMap stack:
            aload 4 /* spdySynStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynStreamFrame.priority:()B
            istore 6 /* priority */
        start local 6 // byte priority
        38: .line 550
            aload 4 /* spdySynStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynStreamFrame.isUnidirectional:()Z
            istore 7 /* remoteSideClosed */
        start local 7 // boolean remoteSideClosed
        39: .line 551
            aload 4 /* spdySynStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynStreamFrame.isLast:()Z
            istore 8 /* localSideClosed */
        start local 8 // boolean localSideClosed
        40: .line 552
            aload 0 /* this */
            iload 5 /* streamId */
            iload 6 /* priority */
            iload 7 /* remoteSideClosed */
            iload 8 /* localSideClosed */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.acceptStream:(IBZZ)Z
            ifne 98
        41: .line 553
            aload 3 /* promise */
            getstatic io.netty.handler.codec.spdy.SpdySessionHandler.PROTOCOL_EXCEPTION:Lio/netty/handler/codec/spdy/SpdyProtocolException;
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
        42: .line 554
            return
        end local 8 // boolean localSideClosed
        end local 7 // boolean remoteSideClosed
        end local 6 // byte priority
        end local 5 // int streamId
        end local 4 // io.netty.handler.codec.spdy.SpdySynStreamFrame spdySynStreamFrame
        43: .line 557
      StackMap locals:
      StackMap stack:
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdySynReplyFrame
            ifeq 52
        44: .line 559
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdySynReplyFrame
            astore 4 /* spdySynReplyFrame */
        start local 4 // io.netty.handler.codec.spdy.SpdySynReplyFrame spdySynReplyFrame
        45: .line 560
            aload 4 /* spdySynReplyFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynReplyFrame.streamId:()I
            istore 5 /* streamId */
        start local 5 // int streamId
        46: .line 563
            aload 0 /* this */
            iload 5 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            ifeq 47
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 5 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.isLocalSideClosed:(I)Z
            ifeq 49
        47: .line 564
      StackMap locals: io.netty.handler.codec.spdy.SpdySynReplyFrame int
      StackMap stack:
            aload 3 /* promise */
            getstatic io.netty.handler.codec.spdy.SpdySessionHandler.PROTOCOL_EXCEPTION:Lio/netty/handler/codec/spdy/SpdyProtocolException;
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
        48: .line 565
            return
        49: .line 569
      StackMap locals:
      StackMap stack:
            aload 4 /* spdySynReplyFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdySynReplyFrame.isLast:()Z
            ifeq 98
        50: .line 570
            aload 0 /* this */
            iload 5 /* streamId */
            iconst_0
            aload 3 /* promise */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.halfCloseStream:(IZLio/netty/channel/ChannelFuture;)V
        end local 5 // int streamId
        end local 4 // io.netty.handler.codec.spdy.SpdySynReplyFrame spdySynReplyFrame
        51: .line 573
            goto 98
      StackMap locals:
      StackMap stack:
        52: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyRstStreamFrame
            ifeq 56
        53: .line 575
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdyRstStreamFrame
            astore 4 /* spdyRstStreamFrame */
        start local 4 // io.netty.handler.codec.spdy.SpdyRstStreamFrame spdyRstStreamFrame
        54: .line 576
            aload 0 /* this */
            aload 4 /* spdyRstStreamFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyRstStreamFrame.streamId:()I
            aload 3 /* promise */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.removeStream:(ILio/netty/channel/ChannelFuture;)V
        end local 4 // io.netty.handler.codec.spdy.SpdyRstStreamFrame spdyRstStreamFrame
        55: .line 578
            goto 98
      StackMap locals:
      StackMap stack:
        56: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdySettingsFrame
            ifeq 74
        57: .line 580
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdySettingsFrame
            astore 4 /* spdySettingsFrame */
        start local 4 // io.netty.handler.codec.spdy.SpdySettingsFrame spdySettingsFrame
        58: .line 582
            aload 4 /* spdySettingsFrame */
            iconst_0
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.getValue:(I)I
            istore 5 /* settingsMinorVersion */
        start local 5 // int settingsMinorVersion
        59: .line 583
            iload 5 /* settingsMinorVersion */
            iflt 62
            iload 5 /* settingsMinorVersion */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.minorVersion:I
            if_icmpeq 62
        60: .line 585
            aload 3 /* promise */
            getstatic io.netty.handler.codec.spdy.SpdySessionHandler.PROTOCOL_EXCEPTION:Lio/netty/handler/codec/spdy/SpdyProtocolException;
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
        61: .line 586
            return
        62: .line 590
      StackMap locals: io.netty.handler.codec.spdy.SpdySettingsFrame int
      StackMap stack:
            aload 4 /* spdySettingsFrame */
            iconst_4
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.getValue:(I)I
        63: .line 589
            istore 6 /* newConcurrentStreams */
        start local 6 // int newConcurrentStreams
        64: .line 591
            iload 6 /* newConcurrentStreams */
            iflt 66
        65: .line 592
            aload 0 /* this */
            iload 6 /* newConcurrentStreams */
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.localConcurrentStreams:I
        66: .line 598
      StackMap locals: int
      StackMap stack:
            aload 4 /* spdySettingsFrame */
            bipush 7
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.isPersisted:(I)Z
            ifeq 68
        67: .line 599
            aload 4 /* spdySettingsFrame */
            bipush 7
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.removeValue:(I)Lio/netty/handler/codec/spdy/SpdySettingsFrame;
            pop
        68: .line 601
      StackMap locals:
      StackMap stack:
            aload 4 /* spdySettingsFrame */
            bipush 7
            iconst_0
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.setPersistValue:(IZ)Lio/netty/handler/codec/spdy/SpdySettingsFrame;
            pop
        69: .line 604
            aload 4 /* spdySettingsFrame */
            bipush 7
            invokeinterface io.netty.handler.codec.spdy.SpdySettingsFrame.getValue:(I)I
        70: .line 603
            istore 7 /* newInitialWindowSize */
        start local 7 // int newInitialWindowSize
        71: .line 605
            iload 7 /* newInitialWindowSize */
            iflt 98
        72: .line 606
            aload 0 /* this */
            iload 7 /* newInitialWindowSize */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.updateInitialReceiveWindowSize:(I)V
        end local 7 // int newInitialWindowSize
        end local 6 // int newConcurrentStreams
        end local 5 // int settingsMinorVersion
        end local 4 // io.netty.handler.codec.spdy.SpdySettingsFrame spdySettingsFrame
        73: .line 609
            goto 98
      StackMap locals:
      StackMap stack:
        74: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyPingFrame
            ifeq 83
        75: .line 611
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdyPingFrame
            astore 4 /* spdyPingFrame */
        start local 4 // io.netty.handler.codec.spdy.SpdyPingFrame spdyPingFrame
        76: .line 612
            aload 0 /* this */
            aload 4 /* spdyPingFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyPingFrame.id:()I
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            ifeq 81
        77: .line 613
            aload 1 /* ctx */
            new java.lang.IllegalArgumentException
            dup
        78: .line 614
            new java.lang.StringBuilder
            dup
            ldc "invalid PING ID: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* spdyPingFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyPingFrame.id:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
        79: .line 613
            invokeinterface io.netty.channel.ChannelHandlerContext.fireExceptionCaught:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelHandlerContext;
            pop
        80: .line 615
            return
        81: .line 617
      StackMap locals: io.netty.handler.codec.spdy.SpdyPingFrame
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.pings:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.getAndIncrement:()I
            pop
        end local 4 // io.netty.handler.codec.spdy.SpdyPingFrame spdyPingFrame
        82: .line 619
            goto 98
      StackMap locals:
      StackMap stack:
        83: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyGoAwayFrame
            ifeq 86
        84: .line 623
            aload 3 /* promise */
            getstatic io.netty.handler.codec.spdy.SpdySessionHandler.PROTOCOL_EXCEPTION:Lio/netty/handler/codec/spdy/SpdyProtocolException;
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
        85: .line 624
            return
        86: .line 626
      StackMap locals:
      StackMap stack:
            aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyHeadersFrame
            ifeq 95
        87: .line 628
            aload 2 /* msg */
            checkcast io.netty.handler.codec.spdy.SpdyHeadersFrame
            astore 4 /* spdyHeadersFrame */
        start local 4 // io.netty.handler.codec.spdy.SpdyHeadersFrame spdyHeadersFrame
        88: .line 629
            aload 4 /* spdyHeadersFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyHeadersFrame.streamId:()I
            istore 5 /* streamId */
        start local 5 // int streamId
        89: .line 632
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 5 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.isLocalSideClosed:(I)Z
            ifeq 92
        90: .line 633
            aload 3 /* promise */
            getstatic io.netty.handler.codec.spdy.SpdySessionHandler.PROTOCOL_EXCEPTION:Lio/netty/handler/codec/spdy/SpdyProtocolException;
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
        91: .line 634
            return
        92: .line 638
      StackMap locals: io.netty.handler.codec.spdy.SpdyHeadersFrame int
      StackMap stack:
            aload 4 /* spdyHeadersFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyHeadersFrame.isLast:()Z
            ifeq 98
        93: .line 639
            aload 0 /* this */
            iload 5 /* streamId */
            iconst_0
            aload 3 /* promise */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.halfCloseStream:(IZLio/netty/channel/ChannelFuture;)V
        end local 5 // int streamId
        end local 4 // io.netty.handler.codec.spdy.SpdyHeadersFrame spdyHeadersFrame
        94: .line 642
            goto 98
      StackMap locals:
      StackMap stack:
        95: aload 2 /* msg */
            instanceof io.netty.handler.codec.spdy.SpdyWindowUpdateFrame
            ifeq 98
        96: .line 645
            aload 3 /* promise */
            getstatic io.netty.handler.codec.spdy.SpdySessionHandler.PROTOCOL_EXCEPTION:Lio/netty/handler/codec/spdy/SpdyProtocolException;
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
        97: .line 646
            return
        98: .line 649
      StackMap locals:
      StackMap stack:
            aload 1 /* ctx */
            aload 2 /* msg */
            aload 3 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.write:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
        99: .line 650
            return
        end local 3 // io.netty.channel.ChannelPromise promise
        end local 2 // java.lang.Object msg
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0  100     0                   this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0  100     1                    ctx  Lio/netty/channel/ChannelHandlerContext;
            0  100     2                    msg  Ljava/lang/Object;
            0  100     3                promise  Lio/netty/channel/ChannelPromise;
            2   30     4          spdyDataFrame  Lio/netty/handler/codec/spdy/SpdyDataFrame;
            3   30     5               streamId  I
            8   30     6             dataLength  I
            9   30     7         sendWindowSize  I
           10   30     8  sessionSendWindowSize  I
           20   24     9       partialDataFrame  Lio/netty/handler/codec/spdy/SpdyDataFrame;
           22   24    10                context  Lio/netty/channel/ChannelHandlerContext;
           27   28     9                context  Lio/netty/channel/ChannelHandlerContext;
           33   43     4     spdySynStreamFrame  Lio/netty/handler/codec/spdy/SpdySynStreamFrame;
           34   43     5               streamId  I
           38   43     6               priority  B
           39   43     7       remoteSideClosed  Z
           40   43     8        localSideClosed  Z
           45   51     4      spdySynReplyFrame  Lio/netty/handler/codec/spdy/SpdySynReplyFrame;
           46   51     5               streamId  I
           54   55     4     spdyRstStreamFrame  Lio/netty/handler/codec/spdy/SpdyRstStreamFrame;
           58   73     4      spdySettingsFrame  Lio/netty/handler/codec/spdy/SpdySettingsFrame;
           59   73     5   settingsMinorVersion  I
           64   73     6   newConcurrentStreams  I
           71   73     7   newInitialWindowSize  I
           76   82     4          spdyPingFrame  Lio/netty/handler/codec/spdy/SpdyPingFrame;
           88   94     4       spdyHeadersFrame  Lio/netty/handler/codec/spdy/SpdyHeadersFrame;
           89   94     5               streamId  I
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
         Name  Flags
      ctx      
      msg      
      promise  

  private void issueSessionError(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.spdy.SpdySessionStatus);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdySessionStatus;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.handler.codec.spdy.SpdySessionStatus status
         0: .line 664
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* status */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.sendGoAwayFrame:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdySessionStatus;)Lio/netty/channel/ChannelFuture;
            new io.netty.handler.codec.spdy.SpdySessionHandler$ClosingChannelFutureListener
            dup
            aload 1 /* ctx */
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.newPromise:()Lio/netty/channel/ChannelPromise;
            invokespecial io.netty.handler.codec.spdy.SpdySessionHandler$ClosingChannelFutureListener.<init>:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)V
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
         1: .line 665
            return
        end local 2 // io.netty.handler.codec.spdy.SpdySessionStatus status
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    2     1     ctx  Lio/netty/channel/ChannelHandlerContext;
            0    2     2  status  Lio/netty/handler/codec/spdy/SpdySessionStatus;
    MethodParameters:
        Name  Flags
      ctx     
      status  

  private void issueStreamError(io.netty.channel.ChannelHandlerContext, int, io.netty.handler.codec.spdy.SpdyStreamStatus);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // int streamId
        start local 3 // io.netty.handler.codec.spdy.SpdyStreamStatus status
         0: .line 679
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 2 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.isRemoteSideClosed:(I)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: istore 4 /* fireChannelRead */
        start local 4 // boolean fireChannelRead
         3: .line 680
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.newPromise:()Lio/netty/channel/ChannelPromise;
            astore 5 /* promise */
        start local 5 // io.netty.channel.ChannelPromise promise
         4: .line 681
            aload 0 /* this */
            iload 2 /* streamId */
            aload 5 /* promise */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.removeStream:(ILio/netty/channel/ChannelFuture;)V
         5: .line 683
            new io.netty.handler.codec.spdy.DefaultSpdyRstStreamFrame
            dup
            iload 2 /* streamId */
            aload 3 /* status */
            invokespecial io.netty.handler.codec.spdy.DefaultSpdyRstStreamFrame.<init>:(ILio/netty/handler/codec/spdy/SpdyStreamStatus;)V
            astore 6 /* spdyRstStreamFrame */
        start local 6 // io.netty.handler.codec.spdy.SpdyRstStreamFrame spdyRstStreamFrame
         6: .line 684
            aload 1 /* ctx */
            aload 6 /* spdyRstStreamFrame */
            aload 5 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.writeAndFlush:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         7: .line 685
            iload 4 /* fireChannelRead */
            ifeq 9
         8: .line 686
            aload 1 /* ctx */
            aload 6 /* spdyRstStreamFrame */
            invokeinterface io.netty.channel.ChannelHandlerContext.fireChannelRead:(Ljava/lang/Object;)Lio/netty/channel/ChannelHandlerContext;
            pop
         9: .line 688
      StackMap locals: int io.netty.channel.ChannelPromise io.netty.handler.codec.spdy.SpdyRstStreamFrame
      StackMap stack:
            return
        end local 6 // io.netty.handler.codec.spdy.SpdyRstStreamFrame spdyRstStreamFrame
        end local 5 // io.netty.channel.ChannelPromise promise
        end local 4 // boolean fireChannelRead
        end local 3 // io.netty.handler.codec.spdy.SpdyStreamStatus status
        end local 2 // int streamId
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   10     0                this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0   10     1                 ctx  Lio/netty/channel/ChannelHandlerContext;
            0   10     2            streamId  I
            0   10     3              status  Lio/netty/handler/codec/spdy/SpdyStreamStatus;
            3   10     4     fireChannelRead  Z
            4   10     5             promise  Lio/netty/channel/ChannelPromise;
            6   10     6  spdyRstStreamFrame  Lio/netty/handler/codec/spdy/SpdyRstStreamFrame;
    MethodParameters:
          Name  Flags
      ctx       
      streamId  
      status    

  private boolean isRemoteInitiatedId(int);
    descriptor: (I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=3, args_size=2
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // int id
         0: .line 695
            iload 1 /* id */
            invokestatic io.netty.handler.codec.spdy.SpdyCodecUtil.isServerId:(I)Z
            istore 2 /* serverId */
        start local 2 // boolean serverId
         1: .line 696
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.server:Z
            ifeq 2
            iload 2 /* serverId */
            ifeq 4
      StackMap locals: int
      StackMap stack:
         2: aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.server:Z
            ifne 3
            iload 2 /* serverId */
            ifne 4
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_1
            ireturn
        end local 2 // boolean serverId
        end local 1 // int id
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    5     1        id  I
            1    5     2  serverId  Z
    MethodParameters:
      Name  Flags
      id    

  private void updateInitialSendWindowSize(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // int newInitialWindowSize
         0: .line 701
            iload 1 /* newInitialWindowSize */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialSendWindowSize:I
            isub
            istore 2 /* deltaWindowSize */
        start local 2 // int deltaWindowSize
         1: .line 702
            aload 0 /* this */
            iload 1 /* newInitialWindowSize */
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.initialSendWindowSize:I
         2: .line 703
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 2 /* deltaWindowSize */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateAllSendWindowSizes:(I)V
         3: .line 704
            return
        end local 2 // int deltaWindowSize
        end local 1 // int newInitialWindowSize
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    4     0                  this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    4     1  newInitialWindowSize  I
            1    4     2       deltaWindowSize  I
    MethodParameters:
                      Name  Flags
      newInitialWindowSize  

  private void updateInitialReceiveWindowSize(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // int newInitialWindowSize
         0: .line 708
            iload 1 /* newInitialWindowSize */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialReceiveWindowSize:I
            isub
            istore 2 /* deltaWindowSize */
        start local 2 // int deltaWindowSize
         1: .line 709
            aload 0 /* this */
            iload 1 /* newInitialWindowSize */
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.initialReceiveWindowSize:I
         2: .line 710
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 2 /* deltaWindowSize */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateAllReceiveWindowSizes:(I)V
         3: .line 711
            return
        end local 2 // int deltaWindowSize
        end local 1 // int newInitialWindowSize
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    4     0                  this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    4     1  newInitialWindowSize  I
            1    4     2       deltaWindowSize  I
    MethodParameters:
                      Name  Flags
      newInitialWindowSize  

  private boolean acceptStream(int, byte, boolean, boolean);
    descriptor: (IBZZ)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=7, args_size=5
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // int streamId
        start local 2 // byte priority
        start local 3 // boolean remoteSideClosed
        start local 4 // boolean localSideClosed
         0: .line 717
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.receivedGoAwayFrame:Z
            ifne 1
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.sentGoAwayFrame:Z
            ifeq 2
         1: .line 718
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 721
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            istore 5 /* remote */
        start local 5 // boolean remote
         3: .line 722
            iload 5 /* remote */
            ifeq 4
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.localConcurrentStreams:I
            goto 5
      StackMap locals: int
      StackMap stack:
         4: aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.remoteConcurrentStreams:I
      StackMap locals:
      StackMap stack: int
         5: istore 6 /* maxConcurrentStreams */
        start local 6 // int maxConcurrentStreams
         6: .line 723
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 5 /* remote */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.numActiveStreams:(Z)I
            iload 6 /* maxConcurrentStreams */
            if_icmplt 8
         7: .line 724
            iconst_0
            ireturn
         8: .line 726
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
         9: .line 727
            iload 1 /* streamId */
            iload 2 /* priority */
            iload 3 /* remoteSideClosed */
            iload 4 /* localSideClosed */
        10: .line 728
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialSendWindowSize:I
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.initialReceiveWindowSize:I
            iload 5 /* remote */
        11: .line 726
            invokevirtual io.netty.handler.codec.spdy.SpdySession.acceptStream:(IBZZIIZ)V
        12: .line 729
            iload 5 /* remote */
            ifeq 14
        13: .line 730
            aload 0 /* this */
            iload 1 /* streamId */
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.lastGoodStreamId:I
        14: .line 732
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 6 // int maxConcurrentStreams
        end local 5 // boolean remote
        end local 4 // boolean localSideClosed
        end local 3 // boolean remoteSideClosed
        end local 2 // byte priority
        end local 1 // int streamId
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   15     0                  this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0   15     1              streamId  I
            0   15     2              priority  B
            0   15     3      remoteSideClosed  Z
            0   15     4       localSideClosed  Z
            3   15     5                remote  Z
            6   15     6  maxConcurrentStreams  I
    MethodParameters:
                  Name  Flags
      streamId          
      priority          
      remoteSideClosed  
      localSideClosed   

  private void halfCloseStream(int, boolean, io.netty.channel.ChannelFuture);
    descriptor: (IZLio/netty/channel/ChannelFuture;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // int streamId
        start local 2 // boolean remote
        start local 3 // io.netty.channel.ChannelFuture future
         0: .line 736
            iload 2 /* remote */
            ifeq 3
         1: .line 737
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 1 /* streamId */
            aload 0 /* this */
            iload 1 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            invokevirtual io.netty.handler.codec.spdy.SpdySession.closeRemoteSide:(IZ)V
         2: .line 738
            goto 4
         3: .line 739
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 1 /* streamId */
            aload 0 /* this */
            iload 1 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            invokevirtual io.netty.handler.codec.spdy.SpdySession.closeLocalSide:(IZ)V
         4: .line 741
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.closeSessionFutureListener:Lio/netty/channel/ChannelFutureListener;
            ifnull 6
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            invokevirtual io.netty.handler.codec.spdy.SpdySession.noActiveStreams:()Z
            ifeq 6
         5: .line 742
            aload 3 /* future */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.closeSessionFutureListener:Lio/netty/channel/ChannelFutureListener;
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
         6: .line 744
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.netty.channel.ChannelFuture future
        end local 2 // boolean remote
        end local 1 // int streamId
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    7     1  streamId  I
            0    7     2    remote  Z
            0    7     3    future  Lio/netty/channel/ChannelFuture;
    MethodParameters:
          Name  Flags
      streamId  
      remote    
      future    

  private void removeStream(int, io.netty.channel.ChannelFuture);
    descriptor: (ILio/netty/channel/ChannelFuture;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // int streamId
        start local 2 // io.netty.channel.ChannelFuture future
         0: .line 747
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 1 /* streamId */
            getstatic io.netty.handler.codec.spdy.SpdySessionHandler.STREAM_CLOSED:Lio/netty/handler/codec/spdy/SpdyProtocolException;
            aload 0 /* this */
            iload 1 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.isRemoteInitiatedId:(I)Z
            invokevirtual io.netty.handler.codec.spdy.SpdySession.removeStream:(ILjava/lang/Throwable;Z)V
         1: .line 749
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.closeSessionFutureListener:Lio/netty/channel/ChannelFutureListener;
            ifnull 3
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            invokevirtual io.netty.handler.codec.spdy.SpdySession.noActiveStreams:()Z
            ifeq 3
         2: .line 750
            aload 2 /* future */
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.closeSessionFutureListener:Lio/netty/channel/ChannelFutureListener;
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
         3: .line 752
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.netty.channel.ChannelFuture future
        end local 1 // int streamId
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    4     1  streamId  I
            0    4     2    future  Lio/netty/channel/ChannelFuture;
    MethodParameters:
          Name  Flags
      streamId  
      future    

  private void updateSendWindowSize(io.netty.channel.ChannelHandlerContext, int, int);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=11, args_size=4
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // int streamId
        start local 3 // int deltaWindowSize
         0: .line 755
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 2 /* streamId */
            iload 3 /* deltaWindowSize */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateSendWindowSize:(II)I
            pop
         1: .line 759
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 2 /* streamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.getPendingWrite:(I)Lio/netty/handler/codec/spdy/SpdySession$PendingWrite;
            astore 4 /* pendingWrite */
        start local 4 // io.netty.handler.codec.spdy.SpdySession$PendingWrite pendingWrite
         2: .line 760
            aload 4 /* pendingWrite */
            ifnonnull 4
         3: .line 761
            return
         4: .line 764
      StackMap locals: io.netty.handler.codec.spdy.SpdySession$PendingWrite
      StackMap stack:
            aload 4 /* pendingWrite */
            getfield io.netty.handler.codec.spdy.SpdySession$PendingWrite.spdyDataFrame:Lio/netty/handler/codec/spdy/SpdyDataFrame;
            astore 5 /* spdyDataFrame */
        start local 5 // io.netty.handler.codec.spdy.SpdyDataFrame spdyDataFrame
         5: .line 765
            aload 5 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.content:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            istore 6 /* dataFrameSize */
        start local 6 // int dataFrameSize
         6: .line 766
            aload 5 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.streamId:()I
            istore 7 /* writeStreamId */
        start local 7 // int writeStreamId
         7: .line 767
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 7 /* writeStreamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.getSendWindowSize:(I)I
            istore 8 /* sendWindowSize */
        start local 8 // int sendWindowSize
         8: .line 768
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iconst_0
            invokevirtual io.netty.handler.codec.spdy.SpdySession.getSendWindowSize:(I)I
            istore 9 /* sessionSendWindowSize */
        start local 9 // int sessionSendWindowSize
         9: .line 769
            iload 8 /* sendWindowSize */
            iload 9 /* sessionSendWindowSize */
            invokestatic java.lang.Math.min:(II)I
            istore 8 /* sendWindowSize */
        10: .line 771
            iload 8 /* sendWindowSize */
            ifgt 12
        11: .line 772
            return
        12: .line 773
      StackMap locals: io.netty.handler.codec.spdy.SpdySessionHandler io.netty.channel.ChannelHandlerContext int int io.netty.handler.codec.spdy.SpdySession$PendingWrite io.netty.handler.codec.spdy.SpdyDataFrame int int int int
      StackMap stack:
            iload 8 /* sendWindowSize */
            iload 6 /* dataFrameSize */
            if_icmpge 20
        13: .line 775
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 7 /* writeStreamId */
            iconst_m1
            iload 8 /* sendWindowSize */
            imul
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateSendWindowSize:(II)I
            pop
        14: .line 776
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iconst_0
            iconst_m1
            iload 8 /* sendWindowSize */
            imul
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateSendWindowSize:(II)I
            pop
        15: .line 779
            new io.netty.handler.codec.spdy.DefaultSpdyDataFrame
            dup
        16: .line 780
            iload 7 /* writeStreamId */
            aload 5 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.content:()Lio/netty/buffer/ByteBuf;
            iload 8 /* sendWindowSize */
            invokevirtual io.netty.buffer.ByteBuf.readRetainedSlice:(I)Lio/netty/buffer/ByteBuf;
        17: .line 779
            invokespecial io.netty.handler.codec.spdy.DefaultSpdyDataFrame.<init>:(ILio/netty/buffer/ByteBuf;)V
            astore 10 /* partialDataFrame */
        start local 10 // io.netty.handler.codec.spdy.SpdyDataFrame partialDataFrame
        18: .line 784
            aload 1 /* ctx */
            aload 10 /* partialDataFrame */
            invokeinterface io.netty.channel.ChannelHandlerContext.writeAndFlush:(Ljava/lang/Object;)Lio/netty/channel/ChannelFuture;
            new io.netty.handler.codec.spdy.SpdySessionHandler$3
            dup
            aload 0 /* this */
            aload 1 /* ctx */
            invokespecial io.netty.handler.codec.spdy.SpdySessionHandler$3.<init>:(Lio/netty/handler/codec/spdy/SpdySessionHandler;Lio/netty/channel/ChannelHandlerContext;)V
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
        end local 10 // io.netty.handler.codec.spdy.SpdyDataFrame partialDataFrame
        19: .line 792
            goto 1
        20: .line 794
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 7 /* writeStreamId */
            invokevirtual io.netty.handler.codec.spdy.SpdySession.removePendingWrite:(I)Lio/netty/handler/codec/spdy/SpdySession$PendingWrite;
            pop
        21: .line 795
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iload 7 /* writeStreamId */
            iconst_m1
            iload 6 /* dataFrameSize */
            imul
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateSendWindowSize:(II)I
            pop
        22: .line 796
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            iconst_0
            iconst_m1
            iload 6 /* dataFrameSize */
            imul
            invokevirtual io.netty.handler.codec.spdy.SpdySession.updateSendWindowSize:(II)I
            pop
        23: .line 799
            aload 5 /* spdyDataFrame */
            invokeinterface io.netty.handler.codec.spdy.SpdyDataFrame.isLast:()Z
            ifeq 25
        24: .line 800
            aload 0 /* this */
            iload 7 /* writeStreamId */
            iconst_0
            aload 4 /* pendingWrite */
            getfield io.netty.handler.codec.spdy.SpdySession$PendingWrite.promise:Lio/netty/channel/ChannelPromise;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.halfCloseStream:(IZLio/netty/channel/ChannelFuture;)V
        25: .line 805
      StackMap locals:
      StackMap stack:
            aload 1 /* ctx */
            aload 5 /* spdyDataFrame */
            aload 4 /* pendingWrite */
            getfield io.netty.handler.codec.spdy.SpdySession$PendingWrite.promise:Lio/netty/channel/ChannelPromise;
            invokeinterface io.netty.channel.ChannelHandlerContext.writeAndFlush:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            new io.netty.handler.codec.spdy.SpdySessionHandler$4
            dup
            aload 0 /* this */
            aload 1 /* ctx */
            invokespecial io.netty.handler.codec.spdy.SpdySessionHandler$4.<init>:(Lio/netty/handler/codec/spdy/SpdySessionHandler;Lio/netty/channel/ChannelHandlerContext;)V
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
        end local 9 // int sessionSendWindowSize
        end local 8 // int sendWindowSize
        end local 7 // int writeStreamId
        end local 6 // int dataFrameSize
        end local 5 // io.netty.handler.codec.spdy.SpdyDataFrame spdyDataFrame
        end local 4 // io.netty.handler.codec.spdy.SpdySession$PendingWrite pendingWrite
        26: .line 757
            goto 1
        end local 3 // int deltaWindowSize
        end local 2 // int streamId
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   27     0                   this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0   27     1                    ctx  Lio/netty/channel/ChannelHandlerContext;
            0   27     2               streamId  I
            0   27     3        deltaWindowSize  I
            2   26     4           pendingWrite  Lio/netty/handler/codec/spdy/SpdySession$PendingWrite;
            5   26     5          spdyDataFrame  Lio/netty/handler/codec/spdy/SpdyDataFrame;
            6   26     6          dataFrameSize  I
            7   26     7          writeStreamId  I
            8   26     8         sendWindowSize  I
            9   26     9  sessionSendWindowSize  I
           18   19    10       partialDataFrame  Lio/netty/handler/codec/spdy/SpdyDataFrame;
    MethodParameters:
                 Name  Flags
      ctx              final
      streamId         
      deltaWindowSize  

  private void sendGoAwayFrame(io.netty.channel.ChannelHandlerContext, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.channel.ChannelPromise future
         0: .line 819
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.isActive:()Z
            ifne 3
         1: .line 820
            aload 1 /* ctx */
            aload 2 /* future */
            invokeinterface io.netty.channel.ChannelHandlerContext.close:(Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         2: .line 821
            return
         3: .line 824
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            getstatic io.netty.handler.codec.spdy.SpdySessionStatus.OK:Lio/netty/handler/codec/spdy/SpdySessionStatus;
            invokevirtual io.netty.handler.codec.spdy.SpdySessionHandler.sendGoAwayFrame:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdySessionStatus;)Lio/netty/channel/ChannelFuture;
            astore 3 /* f */
        start local 3 // io.netty.channel.ChannelFuture f
         4: .line 825
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.spdySession:Lio/netty/handler/codec/spdy/SpdySession;
            invokevirtual io.netty.handler.codec.spdy.SpdySession.noActiveStreams:()Z
            ifeq 7
         5: .line 826
            aload 3 /* f */
            new io.netty.handler.codec.spdy.SpdySessionHandler$ClosingChannelFutureListener
            dup
            aload 1 /* ctx */
            aload 2 /* future */
            invokespecial io.netty.handler.codec.spdy.SpdySessionHandler$ClosingChannelFutureListener.<init>:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)V
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
         6: .line 827
            goto 8
         7: .line 828
      StackMap locals: io.netty.channel.ChannelFuture
      StackMap stack:
            aload 0 /* this */
            new io.netty.handler.codec.spdy.SpdySessionHandler$ClosingChannelFutureListener
            dup
            aload 1 /* ctx */
            aload 2 /* future */
            invokespecial io.netty.handler.codec.spdy.SpdySessionHandler$ClosingChannelFutureListener.<init>:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)V
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.closeSessionFutureListener:Lio/netty/channel/ChannelFutureListener;
         8: .line 831
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.netty.channel.ChannelFuture f
        end local 2 // io.netty.channel.ChannelPromise future
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    9     1     ctx  Lio/netty/channel/ChannelHandlerContext;
            0    9     2  future  Lio/netty/channel/ChannelPromise;
            4    9     3       f  Lio/netty/channel/ChannelFuture;
    MethodParameters:
        Name  Flags
      ctx     
      future  

  private io.netty.channel.ChannelFuture sendGoAwayFrame(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.spdy.SpdySessionStatus);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdySessionStatus;)Lio/netty/channel/ChannelFuture;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.handler.codec.spdy.SpdySessionStatus status
         0: .line 835
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.sentGoAwayFrame:Z
            ifne 4
         1: .line 836
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.codec.spdy.SpdySessionHandler.sentGoAwayFrame:Z
         2: .line 837
            new io.netty.handler.codec.spdy.DefaultSpdyGoAwayFrame
            dup
            aload 0 /* this */
            getfield io.netty.handler.codec.spdy.SpdySessionHandler.lastGoodStreamId:I
            aload 2 /* status */
            invokespecial io.netty.handler.codec.spdy.DefaultSpdyGoAwayFrame.<init>:(ILio/netty/handler/codec/spdy/SpdySessionStatus;)V
            astore 3 /* spdyGoAwayFrame */
        start local 3 // io.netty.handler.codec.spdy.SpdyGoAwayFrame spdyGoAwayFrame
         3: .line 838
            aload 1 /* ctx */
            aload 3 /* spdyGoAwayFrame */
            invokeinterface io.netty.channel.ChannelHandlerContext.writeAndFlush:(Ljava/lang/Object;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 3 // io.netty.handler.codec.spdy.SpdyGoAwayFrame spdyGoAwayFrame
         4: .line 840
      StackMap locals:
      StackMap stack:
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.newSucceededFuture:()Lio/netty/channel/ChannelFuture;
            areturn
        end local 2 // io.netty.handler.codec.spdy.SpdySessionStatus status
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.spdy.SpdySessionHandler this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lio/netty/handler/codec/spdy/SpdySessionHandler;
            0    5     1              ctx  Lio/netty/channel/ChannelHandlerContext;
            0    5     2           status  Lio/netty/handler/codec/spdy/SpdySessionStatus;
            3    4     3  spdyGoAwayFrame  Lio/netty/handler/codec/spdy/SpdyGoAwayFrame;
    MethodParameters:
        Name  Flags
      ctx     
      status  
}
SourceFile: "SpdySessionHandler.java"
NestMembers:
  io.netty.handler.codec.spdy.SpdySessionHandler$1  io.netty.handler.codec.spdy.SpdySessionHandler$2  io.netty.handler.codec.spdy.SpdySessionHandler$3  io.netty.handler.codec.spdy.SpdySessionHandler$4  io.netty.handler.codec.spdy.SpdySessionHandler$ClosingChannelFutureListener
InnerClasses:
  public final PendingWrite = io.netty.handler.codec.spdy.SpdySession$PendingWrite of io.netty.handler.codec.spdy.SpdySession
  io.netty.handler.codec.spdy.SpdySessionHandler$1
  io.netty.handler.codec.spdy.SpdySessionHandler$2
  io.netty.handler.codec.spdy.SpdySessionHandler$3
  io.netty.handler.codec.spdy.SpdySessionHandler$4
  private final ClosingChannelFutureListener = io.netty.handler.codec.spdy.SpdySessionHandler$ClosingChannelFutureListener of io.netty.handler.codec.spdy.SpdySessionHandler
  private final StreamState = io.netty.handler.codec.spdy.SpdySession$StreamState of io.netty.handler.codec.spdy.SpdySession