final class org.glassfish.grizzly.http.server.NIOReaderImpl extends org.glassfish.grizzly.http.io.NIOReader implements org.glassfish.grizzly.Cacheable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.glassfish.grizzly.http.server.NIOReaderImpl
  super_class: org.glassfish.grizzly.http.io.NIOReader
{
  private org.glassfish.grizzly.http.io.InputBuffer inputBuffer;
    descriptor: Lorg/glassfish/grizzly/http/io/InputBuffer;
    flags: (0x0002) ACC_PRIVATE

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
         0: .line 32
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http.io.NIOReader.<init>:()V
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;

  public int read(java.nio.CharBuffer);
    descriptor: (Ljava/nio/CharBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
        start local 1 // java.nio.CharBuffer target
         0: .line 44
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            aload 1 /* target */
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.read:(Ljava/nio/CharBuffer;)I
            ireturn
        end local 1 // java.nio.CharBuffer target
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
            0    1     1  target  Ljava/nio/CharBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      target  final

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
         0: .line 51
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.readChar:()I
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
    Exceptions:
      throws java.io.IOException

  public int read(char[]);
    descriptor: ([C)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
        start local 1 // char[] cbuf
         0: .line 58
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            aload 1 /* cbuf */
            iconst_0
            aload 1 /* cbuf */
            arraylength
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.read:([CII)I
            ireturn
        end local 1 // char[] cbuf
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
            0    1     1  cbuf  [C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  final

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
        start local 1 // long n
         0: .line 65
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            lload 1 /* n */
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.skip:(J)J
            lreturn
        end local 1 // long n
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
            0    1     1     n  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     final

  public boolean ready();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
         0: .line 72
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.NIOReaderImpl.isReady:()Z
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
    Exceptions:
      throws java.io.IOException

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
         0: .line 81
            iconst_1
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
        start local 1 // int readAheadLimit
         0: .line 88
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            iload 1 /* readAheadLimit */
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.mark:(I)V
         1: .line 89
            return
        end local 1 // int readAheadLimit
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
            0    2     1  readAheadLimit  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      readAheadLimit  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
         0: .line 95
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.reset:()V
         1: .line 96
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
    Exceptions:
      throws java.io.IOException

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 103
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.read:([CII)I
            ireturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
            0    1     1  cbuf  [C
            0    1     2   off  I
            0    1     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  final
      off   final
      len   final

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
         0: .line 110
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.close:()V
         1: .line 111
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
    Exceptions:
      throws java.io.IOException

  public void notifyAvailable(org.glassfish.grizzly.ReadHandler);
    descriptor: (Lorg/glassfish/grizzly/ReadHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
        start local 1 // org.glassfish.grizzly.ReadHandler handler
         0: .line 122
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            aload 1 /* handler */
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.notifyAvailable:(Lorg/glassfish/grizzly/ReadHandler;)V
         1: .line 123
            return
        end local 1 // org.glassfish.grizzly.ReadHandler handler
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
            0    2     1  handler  Lorg/glassfish/grizzly/ReadHandler;
    MethodParameters:
         Name  Flags
      handler  final

  public void notifyAvailable(org.glassfish.grizzly.ReadHandler, int);
    descriptor: (Lorg/glassfish/grizzly/ReadHandler;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
        start local 1 // org.glassfish.grizzly.ReadHandler handler
        start local 2 // int size
         0: .line 130
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            aload 1 /* handler */
            iload 2 /* size */
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.notifyAvailable:(Lorg/glassfish/grizzly/ReadHandler;I)V
         1: .line 131
            return
        end local 2 // int size
        end local 1 // org.glassfish.grizzly.ReadHandler handler
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
            0    2     1  handler  Lorg/glassfish/grizzly/ReadHandler;
            0    2     2     size  I
    MethodParameters:
         Name  Flags
      handler  final
      size     final

  public boolean isFinished();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
         0: .line 138
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.isFinished:()Z
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;

  public int readyData();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
         0: .line 146
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.availableChar:()I
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;

  public boolean isReady();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
         0: .line 154
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.NIOReaderImpl.readyData:()I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;

  public void recycle();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
         0: .line 167
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
         1: .line 169
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;

  public void setInputBuffer(org.glassfish.grizzly.http.io.InputBuffer);
    descriptor: (Lorg/glassfish/grizzly/http/io/InputBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
        start local 1 // org.glassfish.grizzly.http.io.InputBuffer inputBuffer
         0: .line 177
            aload 0 /* this */
            aload 1 /* inputBuffer */
            putfield org.glassfish.grizzly.http.server.NIOReaderImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
         1: .line 179
            return
        end local 1 // org.glassfish.grizzly.http.io.InputBuffer inputBuffer
        end local 0 // org.glassfish.grizzly.http.server.NIOReaderImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/glassfish/grizzly/http/server/NIOReaderImpl;
            0    2     1  inputBuffer  Lorg/glassfish/grizzly/http/io/InputBuffer;
    MethodParameters:
             Name  Flags
      inputBuffer  final
}
SourceFile: "NIOReaderImpl.java"