final class org.glassfish.grizzly.http.server.NIOInputStreamImpl extends org.glassfish.grizzly.http.io.NIOInputStream 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.NIOInputStreamImpl
  super_class: org.glassfish.grizzly.http.io.NIOInputStream
{
  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.NIOInputStreamImpl this
         0: .line 32
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http.io.NIOInputStream.<init>:()V
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;

  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.NIOInputStreamImpl this
         0: .line 44
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.readByte:()I
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;
    Exceptions:
      throws java.io.IOException

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

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

  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.NIOInputStreamImpl this
        start local 1 // long n
         0: .line 66
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.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.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;
            0    1     1     n  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

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

  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.NIOInputStreamImpl this
         0: .line 80
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.close:()V
         1: .line 81
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;
    Exceptions:
      throws java.io.IOException

  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.NIOInputStreamImpl this
        start local 1 // int readlimit
         0: .line 87
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            iload 1 /* readlimit */
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.mark:(I)V
         1: .line 88
            return
        end local 1 // int readlimit
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;
            0    2     1  readlimit  I
    MethodParameters:
           Name  Flags
      readlimit  

  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.NIOInputStreamImpl this
         0: .line 94
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.reset:()V
         1: .line 95
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;
    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.NIOInputStreamImpl this
         0: .line 103
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.markSupported:()Z
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;

  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.NIOInputStreamImpl this
        start local 1 // org.glassfish.grizzly.ReadHandler handler
         0: .line 115
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.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 116
            return
        end local 1 // org.glassfish.grizzly.ReadHandler handler
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;
            0    2     1  handler  Lorg/glassfish/grizzly/ReadHandler;
    MethodParameters:
         Name  Flags
      handler  

  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.NIOInputStreamImpl this
        start local 1 // org.glassfish.grizzly.ReadHandler handler
        start local 2 // int size
         0: .line 123
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.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 124
            return
        end local 2 // int size
        end local 1 // org.glassfish.grizzly.ReadHandler handler
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;
            0    2     1  handler  Lorg/glassfish/grizzly/ReadHandler;
            0    2     2     size  I
    MethodParameters:
         Name  Flags
      handler  
      size     

  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.NIOInputStreamImpl this
         0: .line 131
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.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.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;

  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.NIOInputStreamImpl this
         0: .line 139
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.available:()I
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;

  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.NIOInputStreamImpl this
         0: .line 147
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.available:()I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;

  public org.glassfish.grizzly.Buffer getBuffer();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
         0: .line 158
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.getBuffer:()Lorg/glassfish/grizzly/Buffer;
            areturn
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;

  public org.glassfish.grizzly.Buffer readBuffer();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
         0: .line 166
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.readBuffer:()Lorg/glassfish/grizzly/Buffer;
            areturn
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;

  public org.glassfish.grizzly.Buffer readBuffer(int);
    descriptor: (I)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
        start local 1 // int size
         0: .line 174
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
            iload 1 /* size */
            invokevirtual org.glassfish.grizzly.http.io.InputBuffer.readBuffer:(I)Lorg/glassfish/grizzly/Buffer;
            areturn
        end local 1 // int size
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;
            0    1     1  size  I
    MethodParameters:
      Name  Flags
      size  final

  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.NIOInputStreamImpl this
         0: .line 185
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
         1: .line 187
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;

  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.NIOInputStreamImpl this
        start local 1 // org.glassfish.grizzly.http.io.InputBuffer inputBuffer
         0: .line 195
            aload 0 /* this */
            aload 1 /* inputBuffer */
            putfield org.glassfish.grizzly.http.server.NIOInputStreamImpl.inputBuffer:Lorg/glassfish/grizzly/http/io/InputBuffer;
         1: .line 197
            return
        end local 1 // org.glassfish.grizzly.http.io.InputBuffer inputBuffer
        end local 0 // org.glassfish.grizzly.http.server.NIOInputStreamImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/glassfish/grizzly/http/server/NIOInputStreamImpl;
            0    2     1  inputBuffer  Lorg/glassfish/grizzly/http/io/InputBuffer;
    MethodParameters:
             Name  Flags
      inputBuffer  final
}
SourceFile: "NIOInputStreamImpl.java"