public class org.glassfish.grizzly.http2.frames.GoAwayFrame extends org.glassfish.grizzly.http2.frames.Http2Frame
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.grizzly.http2.frames.GoAwayFrame
  super_class: org.glassfish.grizzly.http2.frames.Http2Frame
{
  private static final org.glassfish.grizzly.ThreadCache$CachedTypeIndex<org.glassfish.grizzly.http2.frames.GoAwayFrame> CACHE_IDX;
    descriptor: Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex<Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;>;

  public static final int TYPE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 7

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

  private org.glassfish.grizzly.http2.frames.ErrorCode errorCode;
    descriptor: Lorg/glassfish/grizzly/http2/frames/ErrorCode;
    flags: (0x0002) ACC_PRIVATE

  private org.glassfish.grizzly.Buffer additionalDebugData;
    descriptor: Lorg/glassfish/grizzly/Buffer;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 28
            ldc Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;
            bipush 8
            invokestatic org.glassfish.grizzly.ThreadCache.obtainIndex:(Ljava/lang/Class;I)Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;
            putstatic org.glassfish.grizzly.http2.frames.GoAwayFrame.CACHE_IDX:Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;
         1: .line 30
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
         0: .line 38
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http2.frames.Http2Frame.<init>:()V
         1: .line 39
            return
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;

  static org.glassfish.grizzly.http2.frames.GoAwayFrame create();
    descriptor: ()Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=0
         0: .line 44
            getstatic org.glassfish.grizzly.http2.frames.GoAwayFrame.CACHE_IDX:Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;
            invokestatic org.glassfish.grizzly.ThreadCache.takeFromCache:(Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;)Ljava/lang/Object;
            checkcast org.glassfish.grizzly.http2.frames.GoAwayFrame
            astore 0 /* frame */
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame frame
         1: .line 45
            aload 0 /* frame */
            ifnonnull 3
         2: .line 46
            new org.glassfish.grizzly.http2.frames.GoAwayFrame
            dup
            invokespecial org.glassfish.grizzly.http2.frames.GoAwayFrame.<init>:()V
            astore 0 /* frame */
         3: .line 48
      StackMap locals: org.glassfish.grizzly.http2.frames.GoAwayFrame
      StackMap stack:
            aload 0 /* frame */
            areturn
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame frame
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            1    4     0  frame  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;

  public static org.glassfish.grizzly.http2.frames.Http2Frame fromBuffer(int, org.glassfish.grizzly.Buffer);
    descriptor: (ILorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/http2/frames/Http2Frame;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // int streamId
        start local 1 // org.glassfish.grizzly.Buffer frameBuffer
         0: .line 52
            invokestatic org.glassfish.grizzly.http2.frames.GoAwayFrame.create:()Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;
            astore 2 /* frame */
        start local 2 // org.glassfish.grizzly.http2.frames.GoAwayFrame frame
         1: .line 53
            aload 2 /* frame */
            iload 0 /* streamId */
            invokevirtual org.glassfish.grizzly.http2.frames.GoAwayFrame.setStreamId:(I)V
         2: .line 54
            aload 2 /* frame */
            aload 1 /* frameBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.getInt:()I
            ldc 2147483647
            iand
            putfield org.glassfish.grizzly.http2.frames.GoAwayFrame.lastStreamId:I
         3: .line 55
            aload 2 /* frame */
            aload 1 /* frameBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.getInt:()I
            invokestatic org.glassfish.grizzly.http2.frames.ErrorCode.lookup:(I)Lorg/glassfish/grizzly/http2/frames/ErrorCode;
            putfield org.glassfish.grizzly.http2.frames.GoAwayFrame.errorCode:Lorg/glassfish/grizzly/http2/frames/ErrorCode;
         4: .line 56
            aload 2 /* frame */
            aload 1 /* frameBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.hasRemaining:()Z
            ifeq 5
            aload 1 /* frameBuffer */
            goto 6
      StackMap locals: int org.glassfish.grizzly.Buffer org.glassfish.grizzly.http2.frames.GoAwayFrame
      StackMap stack: org.glassfish.grizzly.http2.frames.GoAwayFrame
         5: aconst_null
      StackMap locals: int org.glassfish.grizzly.Buffer org.glassfish.grizzly.http2.frames.GoAwayFrame
      StackMap stack: org.glassfish.grizzly.http2.frames.GoAwayFrame org.glassfish.grizzly.Buffer
         6: putfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
         7: .line 58
            aload 2 /* frame */
            aload 1 /* frameBuffer */
            invokevirtual org.glassfish.grizzly.http2.frames.GoAwayFrame.setFrameBuffer:(Lorg/glassfish/grizzly/Buffer;)V
         8: .line 60
            aload 2 /* frame */
            areturn
        end local 2 // org.glassfish.grizzly.http2.frames.GoAwayFrame frame
        end local 1 // org.glassfish.grizzly.Buffer frameBuffer
        end local 0 // int streamId
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0     streamId  I
            0    9     1  frameBuffer  Lorg/glassfish/grizzly/Buffer;
            1    9     2        frame  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;
    MethodParameters:
             Name  Flags
      streamId     final
      frameBuffer  final

  public static org.glassfish.grizzly.http2.frames.GoAwayFrame$GoAwayFrameBuilder builder();
    descriptor: ()Lorg/glassfish/grizzly/http2/frames/GoAwayFrame$GoAwayFrameBuilder;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 64
            new org.glassfish.grizzly.http2.frames.GoAwayFrame$GoAwayFrameBuilder
            dup
            invokespecial org.glassfish.grizzly.http2.frames.GoAwayFrame$GoAwayFrameBuilder.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int getLastStreamId();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
         0: .line 68
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.lastStreamId:I
            ireturn
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;

  public org.glassfish.grizzly.http2.frames.ErrorCode getErrorCode();
    descriptor: ()Lorg/glassfish/grizzly/http2/frames/ErrorCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
         0: .line 72
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.errorCode:Lorg/glassfish/grizzly/http2/frames/ErrorCode;
            areturn
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;

  public org.glassfish.grizzly.Buffer getAdditionalDebugData();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
         0: .line 76
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
            areturn
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
         0: .line 81
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
            ifnull 1
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
            invokeinterface org.glassfish.grizzly.Buffer.hasRemaining:()Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 1 /* hasAddData */
        start local 1 // boolean hasAddData
         3: .line 83
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 2 /* sb */
        start local 2 // java.lang.StringBuilder sb
         4: .line 84
            aload 2 /* sb */
            ldc "GoAwayFrame {"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http2.frames.GoAwayFrame.headerToString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "{lastStreamId="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.lastStreamId:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", errorCode="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.errorCode:Lorg/glassfish/grizzly/http2/frames/ErrorCode;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         5: .line 85
            iload 1 /* hasAddData */
            ifeq 7
         6: .line 86
            aload 2 /* sb */
            ldc ", additionalDebugData={"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
            invokeinterface org.glassfish.grizzly.Buffer.toStringContent:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         7: .line 89
      StackMap locals: int java.lang.StringBuilder
      StackMap stack:
            aload 2 /* sb */
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         8: .line 90
            aload 2 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.lang.StringBuilder sb
        end local 1 // boolean hasAddData
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;
            3    9     1  hasAddData  Z
            4    9     2          sb  Ljava/lang/StringBuilder;

  public int getType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
         0: .line 97
            bipush 7
            ireturn
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;

  public org.glassfish.grizzly.Buffer toBuffer(org.glassfish.grizzly.memory.MemoryManager);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
        start local 1 // org.glassfish.grizzly.memory.MemoryManager memoryManager
         0: .line 102
            aload 1 /* memoryManager */
            bipush 17
            invokeinterface org.glassfish.grizzly.memory.MemoryManager.allocate:(I)Lorg/glassfish/grizzly/Buffer;
            astore 2 /* buffer */
        start local 2 // org.glassfish.grizzly.Buffer buffer
         1: .line 104
            aload 0 /* this */
            aload 2 /* buffer */
            invokevirtual org.glassfish.grizzly.http2.frames.GoAwayFrame.serializeFrameHeader:(Lorg/glassfish/grizzly/Buffer;)V
         2: .line 105
            aload 2 /* buffer */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.lastStreamId:I
            ldc 2147483647
            iand
            invokeinterface org.glassfish.grizzly.Buffer.putInt:(I)Lorg/glassfish/grizzly/Buffer;
            pop
         3: .line 106
            aload 2 /* buffer */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.errorCode:Lorg/glassfish/grizzly/http2/frames/ErrorCode;
            invokevirtual org.glassfish.grizzly.http2.frames.ErrorCode.getCode:()I
            invokeinterface org.glassfish.grizzly.Buffer.putInt:(I)Lorg/glassfish/grizzly/Buffer;
            pop
         4: .line 108
            aload 2 /* buffer */
            invokeinterface org.glassfish.grizzly.Buffer.trim:()V
         5: .line 110
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
            ifnull 6
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
            invokeinterface org.glassfish.grizzly.Buffer.hasRemaining:()Z
            ifne 7
         6: .line 111
      StackMap locals: org.glassfish.grizzly.Buffer
      StackMap stack:
            aload 2 /* buffer */
            areturn
         7: .line 114
      StackMap locals:
      StackMap stack:
            aload 1 /* memoryManager */
            iconst_2
            anewarray org.glassfish.grizzly.Buffer
            dup
            iconst_0
            aload 2 /* buffer */
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
            aastore
            invokestatic org.glassfish.grizzly.memory.CompositeBuffer.newBuffer:(Lorg/glassfish/grizzly/memory/MemoryManager;[Lorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/memory/CompositeBuffer;
            astore 3 /* cb */
        start local 3 // org.glassfish.grizzly.memory.CompositeBuffer cb
         8: .line 116
            aload 3 /* cb */
            iconst_1
            invokevirtual org.glassfish.grizzly.memory.CompositeBuffer.allowBufferDispose:(Z)V
         9: .line 117
            aload 3 /* cb */
            iconst_1
            invokevirtual org.glassfish.grizzly.memory.CompositeBuffer.allowInternalBuffersDispose:(Z)V
        10: .line 118
            aload 3 /* cb */
            areturn
        end local 3 // org.glassfish.grizzly.memory.CompositeBuffer cb
        end local 2 // org.glassfish.grizzly.Buffer buffer
        end local 1 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   11     0           this  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;
            0   11     1  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            1   11     2         buffer  Lorg/glassfish/grizzly/Buffer;
            8   11     3             cb  Lorg/glassfish/grizzly/memory/CompositeBuffer;
    MethodParameters:
               Name  Flags
      memoryManager  final

  protected int calcLength();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
         0: .line 123
            bipush 8
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
            ifnull 1
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
            invokeinterface org.glassfish.grizzly.Buffer.remaining:()I
            goto 2
      StackMap locals:
      StackMap stack: int
         1: iconst_0
      StackMap locals: org.glassfish.grizzly.http2.frames.GoAwayFrame
      StackMap stack: int int
         2: iadd
            ireturn
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;

  protected java.util.Map<java.lang.Integer, java.lang.String> getFlagNamesMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
         0: .line 128
            invokestatic java.util.Collections.emptyMap:()Ljava/util/Map;
            areturn
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;
    Signature: ()Ljava/util/Map<Ljava/lang/Integer;Ljava/lang/String;>;

  public void recycle();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
         0: .line 135
            getstatic org.glassfish.grizzly.http2.frames.GoAwayFrame.DONT_RECYCLE:Z
            ifeq 2
         1: .line 136
            return
         2: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http2.frames.GoAwayFrame.errorCode:Lorg/glassfish/grizzly/http2/frames/ErrorCode;
         3: .line 140
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.http2.frames.GoAwayFrame.lastStreamId:I
         4: .line 141
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http2.frames.GoAwayFrame.additionalDebugData:Lorg/glassfish/grizzly/Buffer;
         5: .line 143
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http2.frames.Http2Frame.recycle:()V
         6: .line 144
            getstatic org.glassfish.grizzly.http2.frames.GoAwayFrame.CACHE_IDX:Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;
            aload 0 /* this */
            invokestatic org.glassfish.grizzly.ThreadCache.putToCache:(Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;Ljava/lang/Object;)Z
            pop
         7: .line 145
            return
        end local 0 // org.glassfish.grizzly.http2.frames.GoAwayFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/glassfish/grizzly/http2/frames/GoAwayFrame;
}
SourceFile: "GoAwayFrame.java"
NestMembers:
  org.glassfish.grizzly.http2.frames.GoAwayFrame$GoAwayFrameBuilder
InnerClasses:
  public final CachedTypeIndex = org.glassfish.grizzly.ThreadCache$CachedTypeIndex of org.glassfish.grizzly.ThreadCache
  public GoAwayFrameBuilder = org.glassfish.grizzly.http2.frames.GoAwayFrame$GoAwayFrameBuilder of org.glassfish.grizzly.http2.frames.GoAwayFrame