public class org.glassfish.grizzly.http2.HeadersDecoder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.grizzly.http2.HeadersDecoder
  super_class: java.lang.Object
{
  private final org.glassfish.grizzly.http2.hpack.Decoder hpackDecoder;
    descriptor: Lorg/glassfish/grizzly/http2/hpack/Decoder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.glassfish.grizzly.memory.MemoryManager memoryManager;
    descriptor: Lorg/glassfish/grizzly/memory/MemoryManager;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

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

  public void <init>(org.glassfish.grizzly.memory.MemoryManager, int, int);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
        start local 1 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        start local 2 // int maxHeaderSize
        start local 3 // int maxHeaderTableSize
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            aload 1 /* memoryManager */
            putfield org.glassfish.grizzly.http2.HeadersDecoder.memoryManager:Lorg/glassfish/grizzly/memory/MemoryManager;
         2: .line 44
            aload 0 /* this */
            iload 2 /* maxHeaderSize */
            putfield org.glassfish.grizzly.http2.HeadersDecoder.maxHeaderSize:I
         3: .line 45
            aload 0 /* this */
            new org.glassfish.grizzly.http2.hpack.Decoder
            dup
            iload 3 /* maxHeaderTableSize */
            invokespecial org.glassfish.grizzly.http2.hpack.Decoder.<init>:(I)V
            putfield org.glassfish.grizzly.http2.HeadersDecoder.hpackDecoder:Lorg/glassfish/grizzly/http2/hpack/Decoder;
         4: .line 46
            return
        end local 3 // int maxHeaderTableSize
        end local 2 // int maxHeaderSize
        end local 1 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        end local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    5     0                this  Lorg/glassfish/grizzly/http2/HeadersDecoder;
            0    5     1       memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0    5     2       maxHeaderSize  I
            0    5     3  maxHeaderTableSize  I
    MethodParameters:
                    Name  Flags
      memoryManager       final
      maxHeaderSize       final
      maxHeaderTableSize  final

  public boolean append(org.glassfish.grizzly.Buffer);
    descriptor: (Lorg/glassfish/grizzly/Buffer;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
        start local 1 // org.glassfish.grizzly.Buffer buffer
         0: .line 49
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.http2.HeadersDecoder.currentHeaderSize:I
            aload 1 /* buffer */
            invokeinterface org.glassfish.grizzly.Buffer.remaining:()I
            iadd
            putfield org.glassfish.grizzly.http2.HeadersDecoder.currentHeaderSize:I
         1: .line 50
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.HeadersDecoder.currentHeaderSize:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.HeadersDecoder.maxHeaderSize:I
            if_icmpgt 4
         2: .line 51
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.HeadersDecoder.memoryManager:Lorg/glassfish/grizzly/memory/MemoryManager;
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.HeadersDecoder.inBuffer:Lorg/glassfish/grizzly/Buffer;
            aload 1 /* buffer */
            iconst_1
            invokestatic org.glassfish.grizzly.memory.Buffers.appendBuffers:(Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;Lorg/glassfish/grizzly/Buffer;Z)Lorg/glassfish/grizzly/Buffer;
            putfield org.glassfish.grizzly.http2.HeadersDecoder.inBuffer:Lorg/glassfish/grizzly/Buffer;
         3: .line 52
            iconst_1
            ireturn
         4: .line 54
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // org.glassfish.grizzly.Buffer buffer
        end local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/glassfish/grizzly/http2/HeadersDecoder;
            0    5     1  buffer  Lorg/glassfish/grizzly/Buffer;
    MethodParameters:
        Name  Flags
      buffer  final

  public void decode(org.glassfish.grizzly.http2.hpack.DecodingCallback);
    descriptor: (Lorg/glassfish/grizzly/http2/hpack/DecodingCallback;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
        start local 1 // org.glassfish.grizzly.http2.hpack.DecodingCallback callback
         0: .line 58
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.HeadersDecoder.inBuffer:Lorg/glassfish/grizzly/Buffer;
            ifnull 6
         1: .line 59
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.HeadersDecoder.hpackDecoder:Lorg/glassfish/grizzly/http2/hpack/Decoder;
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.HeadersDecoder.inBuffer:Lorg/glassfish/grizzly/Buffer;
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http2.HeadersDecoder.isProcessingHeaders:()Z
            ifeq 2
            iconst_0
            goto 3
      StackMap locals: org.glassfish.grizzly.http2.HeadersDecoder org.glassfish.grizzly.http2.hpack.DecodingCallback
      StackMap stack: org.glassfish.grizzly.http2.hpack.Decoder org.glassfish.grizzly.Buffer
         2: iconst_1
      StackMap locals: org.glassfish.grizzly.http2.HeadersDecoder org.glassfish.grizzly.http2.hpack.DecodingCallback
      StackMap stack: org.glassfish.grizzly.http2.hpack.Decoder org.glassfish.grizzly.Buffer int
         3: aload 1 /* callback */
            invokevirtual org.glassfish.grizzly.http2.hpack.Decoder.decode:(Lorg/glassfish/grizzly/Buffer;ZLorg/glassfish/grizzly/http2/hpack/DecodingCallback;)V
         4: .line 61
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.HeadersDecoder.inBuffer:Lorg/glassfish/grizzly/Buffer;
            invokeinterface org.glassfish.grizzly.Buffer.tryDispose:()Z
            pop
         5: .line 62
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http2.HeadersDecoder.inBuffer:Lorg/glassfish/grizzly/Buffer;
         6: .line 64
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.glassfish.grizzly.http2.hpack.DecodingCallback callback
        end local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/glassfish/grizzly/http2/HeadersDecoder;
            0    7     1  callback  Lorg/glassfish/grizzly/http2/hpack/DecodingCallback;
    MethodParameters:
          Name  Flags
      callback  final

  public org.glassfish.grizzly.http2.frames.HeaderBlockHead finishHeader();
    descriptor: ()Lorg/glassfish/grizzly/http2/frames/HeaderBlockHead;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
         0: .line 67
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.HeadersDecoder.firstHeaderFrame:Lorg/glassfish/grizzly/http2/frames/HeaderBlockHead;
            astore 1 /* firstHeaderFrameLocal */
        start local 1 // org.glassfish.grizzly.http2.frames.HeaderBlockHead firstHeaderFrameLocal
         1: .line 68
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http2.HeadersDecoder.firstHeaderFrame:Lorg/glassfish/grizzly/http2/frames/HeaderBlockHead;
         2: .line 69
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.http2.HeadersDecoder.currentHeaderSize:I
         3: .line 70
            aload 1 /* firstHeaderFrameLocal */
            areturn
        end local 1 // org.glassfish.grizzly.http2.frames.HeaderBlockHead firstHeaderFrameLocal
        end local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    4     0                   this  Lorg/glassfish/grizzly/http2/HeadersDecoder;
            1    4     1  firstHeaderFrameLocal  Lorg/glassfish/grizzly/http2/frames/HeaderBlockHead;

  public void setFirstHeaderFrame(org.glassfish.grizzly.http2.frames.HeaderBlockHead);
    descriptor: (Lorg/glassfish/grizzly/http2/frames/HeaderBlockHead;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
        start local 1 // org.glassfish.grizzly.http2.frames.HeaderBlockHead firstHeaderFrame
         0: .line 75
            aload 0 /* this */
            aload 1 /* firstHeaderFrame */
            putfield org.glassfish.grizzly.http2.HeadersDecoder.firstHeaderFrame:Lorg/glassfish/grizzly/http2/frames/HeaderBlockHead;
         1: .line 76
            return
        end local 1 // org.glassfish.grizzly.http2.frames.HeaderBlockHead firstHeaderFrame
        end local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/glassfish/grizzly/http2/HeadersDecoder;
            0    2     1  firstHeaderFrame  Lorg/glassfish/grizzly/http2/frames/HeaderBlockHead;
    MethodParameters:
                  Name  Flags
      firstHeaderFrame  final

  public boolean isProcessingHeaders();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
         0: .line 79
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.HeadersDecoder.firstHeaderFrame:Lorg/glassfish/grizzly/http2/frames/HeaderBlockHead;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.http2.HeadersDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http2/HeadersDecoder;
}
SourceFile: "HeadersDecoder.java"