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

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
        start local 1 // int c
         0: .line 43
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
            iload 1 /* c */
            invokevirtual org.glassfish.grizzly.http.io.OutputBuffer.writeChar:(I)V
         1: .line 44
            return
        end local 1 // int c
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;
            0    2     1     c  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  public void write(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
        start local 1 // char[] cbuf
         0: .line 50
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
            aload 1 /* cbuf */
            invokevirtual org.glassfish.grizzly.http.io.OutputBuffer.write:([C)V
         1: .line 51
            return
        end local 1 // char[] cbuf
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;
            0    2     1  cbuf  [C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  

  public void write(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 58
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual org.glassfish.grizzly.http.io.OutputBuffer.write:([CII)V
         1: .line 59
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;
            0    2     1  cbuf  [C
            0    2     2   off  I
            0    2     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   

  public void write(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
        start local 1 // java.lang.String str
         0: .line 65
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
            aload 1 /* str */
            invokevirtual org.glassfish.grizzly.http.io.OutputBuffer.write:(Ljava/lang/String;)V
         1: .line 66
            return
        end local 1 // java.lang.String str
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;
            0    2     1   str  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   

  public void write(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
        start local 1 // java.lang.String str
        start local 2 // int off
        start local 3 // int len
         0: .line 73
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
            aload 1 /* str */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual org.glassfish.grizzly.http.io.OutputBuffer.write:(Ljava/lang/String;II)V
         1: .line 74
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // java.lang.String str
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;
            0    2     1   str  Ljava/lang/String;
            0    2     2   off  I
            0    2     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   
      off   
      len   

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
         0: .line 80
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.OutputBuffer.flush:()V
         1: .line 81
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;
    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.NIOWriterImpl this
         0: .line 87
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.OutputBuffer.close:()V
         1: .line 88
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;
    Exceptions:
      throws java.io.IOException

  public boolean canWrite(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
        start local 1 // int length
         0: .line 102
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
            invokevirtual org.glassfish.grizzly.http.io.OutputBuffer.canWrite:()Z
            ireturn
        end local 1 // int length
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;
            0    1     1  length  I
    MethodParameters:
        Name  Flags
      length  final

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

  public void notifyCanWrite(org.glassfish.grizzly.WriteHandler, int);
    descriptor: (Lorg/glassfish/grizzly/WriteHandler;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
        start local 1 // org.glassfish.grizzly.WriteHandler handler
        start local 2 // int length
         0: .line 128
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
            aload 1 /* handler */
            invokevirtual org.glassfish.grizzly.http.io.OutputBuffer.notifyCanWrite:(Lorg/glassfish/grizzly/WriteHandler;)V
         1: .line 129
            return
        end local 2 // int length
        end local 1 // org.glassfish.grizzly.WriteHandler handler
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;
            0    2     1  handler  Lorg/glassfish/grizzly/WriteHandler;
            0    2     2   length  I
    MethodParameters:
         Name  Flags
      handler  final
      length   final

  public void notifyCanWrite(org.glassfish.grizzly.WriteHandler);
    descriptor: (Lorg/glassfish/grizzly/WriteHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
        start local 1 // org.glassfish.grizzly.WriteHandler handler
         0: .line 142
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
            aload 1 /* handler */
            invokevirtual org.glassfish.grizzly.http.io.OutputBuffer.notifyCanWrite:(Lorg/glassfish/grizzly/WriteHandler;)V
         1: .line 143
            return
        end local 1 // org.glassfish.grizzly.WriteHandler handler
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;
            0    2     1  handler  Lorg/glassfish/grizzly/WriteHandler;
    MethodParameters:
         Name  Flags
      handler  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.NIOWriterImpl this
         0: .line 154
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http.server.NIOWriterImpl.outputBuffer:Lorg/glassfish/grizzly/http/io/OutputBuffer;
         1: .line 156
            return
        end local 0 // org.glassfish.grizzly.http.server.NIOWriterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/server/NIOWriterImpl;

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