public class org.glassfish.grizzly.http.server.io.ServerOutputBuffer extends org.glassfish.grizzly.http.io.OutputBuffer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.grizzly.http.server.io.ServerOutputBuffer
  super_class: org.glassfish.grizzly.http.io.OutputBuffer
{
  private org.glassfish.grizzly.http.server.Response serverResponse;
    descriptor: Lorg/glassfish/grizzly/http/server/Response;
    flags: (0x0002) ACC_PRIVATE

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

  public void initialize(org.glassfish.grizzly.http.server.Response, org.glassfish.grizzly.filterchain.FilterChainContext);
    descriptor: (Lorg/glassfish/grizzly/http/server/Response;Lorg/glassfish/grizzly/filterchain/FilterChainContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
        start local 1 // org.glassfish.grizzly.http.server.Response response
        start local 2 // org.glassfish.grizzly.filterchain.FilterChainContext ctx
         0: .line 35
            aload 0 /* this */
            aload 1 /* response */
            invokevirtual org.glassfish.grizzly.http.server.Response.getResponse:()Lorg/glassfish/grizzly/http/HttpResponsePacket;
            aload 1 /* response */
            invokevirtual org.glassfish.grizzly.http.server.Response.isSendFileEnabled:()Z
            aload 2 /* ctx */
            invokespecial org.glassfish.grizzly.http.io.OutputBuffer.initialize:(Lorg/glassfish/grizzly/http/HttpHeader;ZLorg/glassfish/grizzly/filterchain/FilterChainContext;)V
         1: .line 36
            aload 0 /* this */
            aload 1 /* response */
            putfield org.glassfish.grizzly.http.server.io.ServerOutputBuffer.serverResponse:Lorg/glassfish/grizzly/http/server/Response;
         2: .line 37
            return
        end local 2 // org.glassfish.grizzly.filterchain.FilterChainContext ctx
        end local 1 // org.glassfish.grizzly.http.server.Response response
        end local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/glassfish/grizzly/http/server/io/ServerOutputBuffer;
            0    3     1  response  Lorg/glassfish/grizzly/http/server/Response;
            0    3     2       ctx  Lorg/glassfish/grizzly/filterchain/FilterChainContext;
    MethodParameters:
          Name  Flags
      response  final
      ctx       final

  public void sendfile(java.io.File, long, long, org.glassfish.grizzly.CompletionHandler<org.glassfish.grizzly.WriteResult>);
    descriptor: (Ljava/io/File;JJLorg/glassfish/grizzly/CompletionHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=9, args_size=5
        start local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
        start local 1 // java.io.File file
        start local 2 // long offset
        start local 4 // long length
        start local 6 // org.glassfish.grizzly.CompletionHandler handler
         0: .line 42
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.io.ServerOutputBuffer.sendfileEnabled:Z
            ifne 2
         1: .line 43
            new java.lang.IllegalStateException
            dup
            ldc "sendfile support isn't available."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 48
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.io.ServerOutputBuffer.serverResponse:Lorg/glassfish/grizzly/http/server/Response;
            invokevirtual org.glassfish.grizzly.http.server.Response.isSuspended:()Z
            istore 7 /* suspendedAtStart */
        start local 7 // boolean suspendedAtStart
         3: .line 50
            iload 7 /* suspendedAtStart */
            ifeq 6
            aload 6 /* handler */
            ifnull 6
         4: .line 52
            aload 6 /* handler */
            astore 8 /* ch */
        start local 8 // org.glassfish.grizzly.CompletionHandler ch
         5: .line 53
            goto 10
        end local 8 // org.glassfish.grizzly.CompletionHandler ch
      StackMap locals: int
      StackMap stack:
         6: iload 7 /* suspendedAtStart */
            ifne 9
            aload 6 /* handler */
            ifnull 9
         7: .line 55
            aload 0 /* this */
            aload 6 /* handler */
            invokevirtual org.glassfish.grizzly.http.server.io.ServerOutputBuffer.suspendAndCreateHandler:(Lorg/glassfish/grizzly/CompletionHandler;)Lorg/glassfish/grizzly/CompletionHandler;
            astore 8 /* ch */
        start local 8 // org.glassfish.grizzly.CompletionHandler ch
         8: .line 56
            goto 10
        end local 8 // org.glassfish.grizzly.CompletionHandler ch
         9: .line 59
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* file */
            iload 7 /* suspendedAtStart */
            invokevirtual org.glassfish.grizzly.http.server.io.ServerOutputBuffer.createInternalCompletionHandler:(Ljava/io/File;Z)Lorg/glassfish/grizzly/CompletionHandler;
            astore 8 /* ch */
        start local 8 // org.glassfish.grizzly.CompletionHandler ch
        10: .line 61
      StackMap locals: org.glassfish.grizzly.CompletionHandler
      StackMap stack:
            aload 0 /* this */
            aload 1 /* file */
            lload 2 /* offset */
            lload 4 /* length */
            aload 8 /* ch */
            invokespecial org.glassfish.grizzly.http.io.OutputBuffer.sendfile:(Ljava/io/File;JJLorg/glassfish/grizzly/CompletionHandler;)V
        11: .line 62
            return
        end local 8 // org.glassfish.grizzly.CompletionHandler ch
        end local 7 // boolean suspendedAtStart
        end local 6 // org.glassfish.grizzly.CompletionHandler handler
        end local 4 // long length
        end local 2 // long offset
        end local 1 // java.io.File file
        end local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   12     0              this  Lorg/glassfish/grizzly/http/server/io/ServerOutputBuffer;
            0   12     1              file  Ljava/io/File;
            0   12     2            offset  J
            0   12     4            length  J
            0   12     6           handler  Lorg/glassfish/grizzly/CompletionHandler<Lorg/glassfish/grizzly/WriteResult;>;
            3   12     7  suspendedAtStart  Z
            5    6     8                ch  Lorg/glassfish/grizzly/CompletionHandler<Lorg/glassfish/grizzly/WriteResult;>;
            8    9     8                ch  Lorg/glassfish/grizzly/CompletionHandler<Lorg/glassfish/grizzly/WriteResult;>;
           10   12     8                ch  Lorg/glassfish/grizzly/CompletionHandler<Lorg/glassfish/grizzly/WriteResult;>;
    Signature: (Ljava/io/File;JJLorg/glassfish/grizzly/CompletionHandler<Lorg/glassfish/grizzly/WriteResult;>;)V
    MethodParameters:
         Name  Flags
      file     final
      offset   final
      length   final
      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.io.ServerOutputBuffer this
         0: .line 66
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http.server.io.ServerOutputBuffer.serverResponse:Lorg/glassfish/grizzly/http/server/Response;
         1: .line 67
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http.io.OutputBuffer.recycle:()V
         2: .line 68
            return
        end local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/http/server/io/ServerOutputBuffer;

  protected java.util.concurrent.Executor getThreadPool();
    descriptor: ()Ljava/util/concurrent/Executor;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
         0: .line 72
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.io.ServerOutputBuffer.serverResponse:Lorg/glassfish/grizzly/http/server/Response;
            invokevirtual org.glassfish.grizzly.http.server.Response.getRequest:()Lorg/glassfish/grizzly/http/server/Request;
            invokevirtual org.glassfish.grizzly.http.server.Request.getRequestExecutor:()Ljava/util/concurrent/Executor;
            areturn
        end local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/io/ServerOutputBuffer;

  private org.glassfish.grizzly.CompletionHandler<org.glassfish.grizzly.WriteResult> createInternalCompletionHandler(java.io.File, boolean);
    descriptor: (Ljava/io/File;Z)Lorg/glassfish/grizzly/CompletionHandler;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
        start local 1 // java.io.File file
        start local 2 // boolean suspendedAtStart
         0: .line 78
            iload 2 /* suspendedAtStart */
            ifne 2
         1: .line 79
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.io.ServerOutputBuffer.serverResponse:Lorg/glassfish/grizzly/http/server/Response;
            invokevirtual org.glassfish.grizzly.http.server.Response.suspend:()V
         2: .line 81
      StackMap locals:
      StackMap stack:
            new org.glassfish.grizzly.http.server.io.ServerOutputBuffer$1
            dup
            aload 0 /* this */
            aload 1 /* file */
            invokespecial org.glassfish.grizzly.http.server.io.ServerOutputBuffer$1.<init>:(Lorg/glassfish/grizzly/http/server/io/ServerOutputBuffer;Ljava/io/File;)V
            astore 3 /* ch */
        start local 3 // org.glassfish.grizzly.CompletionHandler ch
         3: .line 110
            aload 3 /* ch */
            areturn
        end local 3 // org.glassfish.grizzly.CompletionHandler ch
        end local 2 // boolean suspendedAtStart
        end local 1 // java.io.File file
        end local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/glassfish/grizzly/http/server/io/ServerOutputBuffer;
            0    4     1              file  Ljava/io/File;
            0    4     2  suspendedAtStart  Z
            3    4     3                ch  Lorg/glassfish/grizzly/CompletionHandler<Lorg/glassfish/grizzly/WriteResult;>;
    Signature: (Ljava/io/File;Z)Lorg/glassfish/grizzly/CompletionHandler<Lorg/glassfish/grizzly/WriteResult;>;
    MethodParameters:
                  Name  Flags
      file              final
      suspendedAtStart  final

  private org.glassfish.grizzly.CompletionHandler<org.glassfish.grizzly.WriteResult> suspendAndCreateHandler(org.glassfish.grizzly.CompletionHandler<org.glassfish.grizzly.WriteResult>);
    descriptor: (Lorg/glassfish/grizzly/CompletionHandler;)Lorg/glassfish/grizzly/CompletionHandler;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
        start local 1 // org.glassfish.grizzly.CompletionHandler handler
         0: .line 115
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.io.ServerOutputBuffer.serverResponse:Lorg/glassfish/grizzly/http/server/Response;
            invokevirtual org.glassfish.grizzly.http.server.Response.suspend:()V
         1: .line 116
            new org.glassfish.grizzly.http.server.io.ServerOutputBuffer$2
            dup
            aload 0 /* this */
            aload 1 /* handler */
            invokespecial org.glassfish.grizzly.http.server.io.ServerOutputBuffer$2.<init>:(Lorg/glassfish/grizzly/http/server/io/ServerOutputBuffer;Lorg/glassfish/grizzly/CompletionHandler;)V
            areturn
        end local 1 // org.glassfish.grizzly.CompletionHandler handler
        end local 0 // org.glassfish.grizzly.http.server.io.ServerOutputBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/http/server/io/ServerOutputBuffer;
            0    2     1  handler  Lorg/glassfish/grizzly/CompletionHandler<Lorg/glassfish/grizzly/WriteResult;>;
    Signature: (Lorg/glassfish/grizzly/CompletionHandler<Lorg/glassfish/grizzly/WriteResult;>;)Lorg/glassfish/grizzly/CompletionHandler<Lorg/glassfish/grizzly/WriteResult;>;
    MethodParameters:
         Name  Flags
      handler  final

  static java.util.logging.Logger access$0();
    descriptor: ()Ljava/util/logging/Logger;
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 30
            getstatic org.glassfish.grizzly.http.server.io.ServerOutputBuffer.LOGGER:Ljava/util/logging/Logger;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "ServerOutputBuffer.java"
NestMembers:
  org.glassfish.grizzly.http.server.io.ServerOutputBuffer$1  org.glassfish.grizzly.http.server.io.ServerOutputBuffer$2
InnerClasses:
  org.glassfish.grizzly.http.server.io.ServerOutputBuffer$1
  org.glassfish.grizzly.http.server.io.ServerOutputBuffer$2