public class org.glassfish.grizzly.StandaloneProcessor implements org.glassfish.grizzly.Processor
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.grizzly.StandaloneProcessor
  super_class: java.lang.Object
{
  public static final org.glassfish.grizzly.StandaloneProcessor INSTANCE;
    descriptor: Lorg/glassfish/grizzly/StandaloneProcessor;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 43
            new org.glassfish.grizzly.StandaloneProcessor
            dup
            invokespecial org.glassfish.grizzly.StandaloneProcessor.<init>:()V
            putstatic org.glassfish.grizzly.StandaloneProcessor.INSTANCE:Lorg/glassfish/grizzly/StandaloneProcessor;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/StandaloneProcessor;

  public org.glassfish.grizzly.ProcessorResult process(org.glassfish.grizzly.Context);
    descriptor: (Lorg/glassfish/grizzly/Context;)Lorg/glassfish/grizzly/ProcessorResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
        start local 1 // org.glassfish.grizzly.Context context
         0: .line 52
            aload 1 /* context */
            invokevirtual org.glassfish.grizzly.Context.getIoEvent:()Lorg/glassfish/grizzly/IOEvent;
            astore 2 /* iOEvent */
        start local 2 // org.glassfish.grizzly.IOEvent iOEvent
         1: .line 53
            aload 2 /* iOEvent */
            getstatic org.glassfish.grizzly.IOEvent.READ:Lorg/glassfish/grizzly/IOEvent;
            if_acmpne 7
         2: .line 54
            aload 1 /* context */
            invokevirtual org.glassfish.grizzly.Context.getConnection:()Lorg/glassfish/grizzly/Connection;
            astore 3 /* connection */
        start local 3 // org.glassfish.grizzly.Connection connection
         3: .line 56
            aload 3 /* connection */
            invokeinterface org.glassfish.grizzly.Connection.getTransport:()Lorg/glassfish/grizzly/Transport;
            checkcast org.glassfish.grizzly.asyncqueue.AsyncQueueEnabledTransport
         4: .line 57
            invokeinterface org.glassfish.grizzly.asyncqueue.AsyncQueueEnabledTransport.getAsyncQueueIO:()Lorg/glassfish/grizzly/asyncqueue/AsyncQueueIO;
            invokeinterface org.glassfish.grizzly.asyncqueue.AsyncQueueIO.getReader:()Lorg/glassfish/grizzly/asyncqueue/AsyncQueueReader;
         5: .line 55
            astore 4 /* reader */
        start local 4 // org.glassfish.grizzly.asyncqueue.AsyncQueueReader reader
         6: .line 59
            aload 4 /* reader */
            aload 1 /* context */
            invokeinterface org.glassfish.grizzly.asyncqueue.AsyncQueueReader.processAsync:(Lorg/glassfish/grizzly/Context;)Lorg/glassfish/grizzly/asyncqueue/AsyncQueue$AsyncResult;
            invokevirtual org.glassfish.grizzly.asyncqueue.AsyncQueue$AsyncResult.toProcessorResult:()Lorg/glassfish/grizzly/ProcessorResult;
            areturn
        end local 4 // org.glassfish.grizzly.asyncqueue.AsyncQueueReader reader
        end local 3 // org.glassfish.grizzly.Connection connection
         7: .line 60
      StackMap locals: org.glassfish.grizzly.IOEvent
      StackMap stack:
            aload 2 /* iOEvent */
            getstatic org.glassfish.grizzly.IOEvent.WRITE:Lorg/glassfish/grizzly/IOEvent;
            if_acmpne 13
         8: .line 61
            aload 1 /* context */
            invokevirtual org.glassfish.grizzly.Context.getConnection:()Lorg/glassfish/grizzly/Connection;
            astore 3 /* connection */
        start local 3 // org.glassfish.grizzly.Connection connection
         9: .line 63
            aload 3 /* connection */
            invokeinterface org.glassfish.grizzly.Connection.getTransport:()Lorg/glassfish/grizzly/Transport;
            checkcast org.glassfish.grizzly.asyncqueue.AsyncQueueEnabledTransport
        10: .line 64
            invokeinterface org.glassfish.grizzly.asyncqueue.AsyncQueueEnabledTransport.getAsyncQueueIO:()Lorg/glassfish/grizzly/asyncqueue/AsyncQueueIO;
            invokeinterface org.glassfish.grizzly.asyncqueue.AsyncQueueIO.getWriter:()Lorg/glassfish/grizzly/asyncqueue/AsyncQueueWriter;
        11: .line 62
            astore 4 /* writer */
        start local 4 // org.glassfish.grizzly.asyncqueue.AsyncQueueWriter writer
        12: .line 66
            aload 4 /* writer */
            aload 1 /* context */
            invokeinterface org.glassfish.grizzly.asyncqueue.AsyncQueueWriter.processAsync:(Lorg/glassfish/grizzly/Context;)Lorg/glassfish/grizzly/asyncqueue/AsyncQueue$AsyncResult;
            invokevirtual org.glassfish.grizzly.asyncqueue.AsyncQueue$AsyncResult.toProcessorResult:()Lorg/glassfish/grizzly/ProcessorResult;
            areturn
        end local 4 // org.glassfish.grizzly.asyncqueue.AsyncQueueWriter writer
        end local 3 // org.glassfish.grizzly.Connection connection
        13: .line 69
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unexpected IOEvent="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* iOEvent */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // org.glassfish.grizzly.IOEvent iOEvent
        end local 1 // org.glassfish.grizzly.Context context
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/glassfish/grizzly/StandaloneProcessor;
            0   14     1     context  Lorg/glassfish/grizzly/Context;
            1   14     2     iOEvent  Lorg/glassfish/grizzly/IOEvent;
            3    7     3  connection  Lorg/glassfish/grizzly/Connection;
            6    7     4      reader  Lorg/glassfish/grizzly/asyncqueue/AsyncQueueReader;
            9   13     3  connection  Lorg/glassfish/grizzly/Connection;
           12   13     4      writer  Lorg/glassfish/grizzly/asyncqueue/AsyncQueueWriter;
    MethodParameters:
         Name  Flags
      context  final

  public boolean isInterested(org.glassfish.grizzly.IOEvent);
    descriptor: (Lorg/glassfish/grizzly/IOEvent;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
        start local 1 // org.glassfish.grizzly.IOEvent ioEvent
         0: .line 77
            aload 1 /* ioEvent */
            getstatic org.glassfish.grizzly.IOEvent.READ:Lorg/glassfish/grizzly/IOEvent;
            if_acmpeq 1
            aload 1 /* ioEvent */
            getstatic org.glassfish.grizzly.IOEvent.WRITE:Lorg/glassfish/grizzly/IOEvent;
            if_acmpeq 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 1 // org.glassfish.grizzly.IOEvent ioEvent
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/StandaloneProcessor;
            0    2     1  ioEvent  Lorg/glassfish/grizzly/IOEvent;
    MethodParameters:
         Name  Flags
      ioEvent  

  public void setInterested(org.glassfish.grizzly.IOEvent, boolean);
    descriptor: (Lorg/glassfish/grizzly/IOEvent;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
        start local 1 // org.glassfish.grizzly.IOEvent ioEvent
        start local 2 // boolean isInterested
         0: .line 85
            return
        end local 2 // boolean isInterested
        end local 1 // org.glassfish.grizzly.IOEvent ioEvent
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/glassfish/grizzly/StandaloneProcessor;
            0    1     1       ioEvent  Lorg/glassfish/grizzly/IOEvent;
            0    1     2  isInterested  Z
    MethodParameters:
              Name  Flags
      ioEvent       
      isInterested  

  public org.glassfish.grizzly.Context obtainContext(org.glassfish.grizzly.Connection);
    descriptor: (Lorg/glassfish/grizzly/Connection;)Lorg/glassfish/grizzly/Context;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
        start local 1 // org.glassfish.grizzly.Connection connection
         0: .line 89
            aload 1 /* connection */
            invokestatic org.glassfish.grizzly.Context.create:(Lorg/glassfish/grizzly/Connection;)Lorg/glassfish/grizzly/Context;
            astore 2 /* context */
        start local 2 // org.glassfish.grizzly.Context context
         1: .line 90
            aload 2 /* context */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.Context.setProcessor:(Lorg/glassfish/grizzly/Processor;)V
         2: .line 91
            aload 2 /* context */
            areturn
        end local 2 // org.glassfish.grizzly.Context context
        end local 1 // org.glassfish.grizzly.Connection connection
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/glassfish/grizzly/StandaloneProcessor;
            0    3     1  connection  Lorg/glassfish/grizzly/Connection;
            1    3     2     context  Lorg/glassfish/grizzly/Context;
    MethodParameters:
            Name  Flags
      connection  final

  public org.glassfish.grizzly.streams.StreamReader getStreamReader(org.glassfish.grizzly.Connection);
    descriptor: (Lorg/glassfish/grizzly/Connection;)Lorg/glassfish/grizzly/streams/StreamReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
        start local 1 // org.glassfish.grizzly.Connection connection
         0: .line 103
            new org.glassfish.grizzly.nio.transport.DefaultStreamReader
            dup
            aload 1 /* connection */
            invokespecial org.glassfish.grizzly.nio.transport.DefaultStreamReader.<init>:(Lorg/glassfish/grizzly/Connection;)V
            areturn
        end local 1 // org.glassfish.grizzly.Connection connection
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/glassfish/grizzly/StandaloneProcessor;
            0    1     1  connection  Lorg/glassfish/grizzly/Connection;
    MethodParameters:
            Name  Flags
      connection  

  public org.glassfish.grizzly.streams.StreamWriter getStreamWriter(org.glassfish.grizzly.Connection);
    descriptor: (Lorg/glassfish/grizzly/Connection;)Lorg/glassfish/grizzly/streams/StreamWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
        start local 1 // org.glassfish.grizzly.Connection connection
         0: .line 114
            new org.glassfish.grizzly.nio.transport.DefaultStreamWriter
            dup
            aload 1 /* connection */
            invokespecial org.glassfish.grizzly.nio.transport.DefaultStreamWriter.<init>:(Lorg/glassfish/grizzly/Connection;)V
            areturn
        end local 1 // org.glassfish.grizzly.Connection connection
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/glassfish/grizzly/StandaloneProcessor;
            0    1     1  connection  Lorg/glassfish/grizzly/Connection;
    MethodParameters:
            Name  Flags
      connection  

  public void read(org.glassfish.grizzly.Connection, org.glassfish.grizzly.CompletionHandler);
    descriptor: (Lorg/glassfish/grizzly/Connection;Lorg/glassfish/grizzly/CompletionHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
        start local 1 // org.glassfish.grizzly.Connection connection
        start local 2 // org.glassfish.grizzly.CompletionHandler completionHandler
         0: .line 121
            aload 1 /* connection */
            invokeinterface org.glassfish.grizzly.Connection.getTransport:()Lorg/glassfish/grizzly/Transport;
            astore 3 /* transport */
        start local 3 // org.glassfish.grizzly.Transport transport
         1: .line 122
            aload 3 /* transport */
            aload 1 /* connection */
            invokeinterface org.glassfish.grizzly.Transport.getReader:(Lorg/glassfish/grizzly/Connection;)Lorg/glassfish/grizzly/Reader;
            aload 1 /* connection */
         2: .line 123
            aconst_null
            aload 2 /* completionHandler */
         3: .line 122
            invokeinterface org.glassfish.grizzly.Reader.read:(Lorg/glassfish/grizzly/Connection;Lorg/glassfish/grizzly/Buffer;Lorg/glassfish/grizzly/CompletionHandler;)V
         4: .line 124
            return
        end local 3 // org.glassfish.grizzly.Transport transport
        end local 2 // org.glassfish.grizzly.CompletionHandler completionHandler
        end local 1 // org.glassfish.grizzly.Connection connection
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lorg/glassfish/grizzly/StandaloneProcessor;
            0    5     1         connection  Lorg/glassfish/grizzly/Connection;
            0    5     2  completionHandler  Lorg/glassfish/grizzly/CompletionHandler;
            1    5     3          transport  Lorg/glassfish/grizzly/Transport;
    MethodParameters:
                   Name  Flags
      connection         
      completionHandler  

  public void write(org.glassfish.grizzly.Connection, java.lang.Object, java.lang.Object, org.glassfish.grizzly.CompletionHandler);
    descriptor: (Lorg/glassfish/grizzly/Connection;Ljava/lang/Object;Ljava/lang/Object;Lorg/glassfish/grizzly/CompletionHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
        start local 1 // org.glassfish.grizzly.Connection connection
        start local 2 // java.lang.Object dstAddress
        start local 3 // java.lang.Object message
        start local 4 // org.glassfish.grizzly.CompletionHandler completionHandler
         0: .line 129
            aload 0 /* this */
            aload 1 /* connection */
            aload 2 /* dstAddress */
            aload 3 /* message */
            aload 4 /* completionHandler */
         1: .line 130
            aconst_null
         2: .line 129
            invokevirtual org.glassfish.grizzly.StandaloneProcessor.write:(Lorg/glassfish/grizzly/Connection;Ljava/lang/Object;Ljava/lang/Object;Lorg/glassfish/grizzly/CompletionHandler;Lorg/glassfish/grizzly/asyncqueue/MessageCloner;)V
         3: .line 131
            return
        end local 4 // org.glassfish.grizzly.CompletionHandler completionHandler
        end local 3 // java.lang.Object message
        end local 2 // java.lang.Object dstAddress
        end local 1 // org.glassfish.grizzly.Connection connection
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lorg/glassfish/grizzly/StandaloneProcessor;
            0    4     1         connection  Lorg/glassfish/grizzly/Connection;
            0    4     2         dstAddress  Ljava/lang/Object;
            0    4     3            message  Ljava/lang/Object;
            0    4     4  completionHandler  Lorg/glassfish/grizzly/CompletionHandler;
    MethodParameters:
                   Name  Flags
      connection         final
      dstAddress         final
      message            final
      completionHandler  final

  public void write(org.glassfish.grizzly.Connection, java.lang.Object, java.lang.Object, org.glassfish.grizzly.CompletionHandler, org.glassfish.grizzly.asyncqueue.MessageCloner);
    descriptor: (Lorg/glassfish/grizzly/Connection;Ljava/lang/Object;Ljava/lang/Object;Lorg/glassfish/grizzly/CompletionHandler;Lorg/glassfish/grizzly/asyncqueue/MessageCloner;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=6
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
        start local 1 // org.glassfish.grizzly.Connection connection
        start local 2 // java.lang.Object dstAddress
        start local 3 // java.lang.Object message
        start local 4 // org.glassfish.grizzly.CompletionHandler completionHandler
        start local 5 // org.glassfish.grizzly.asyncqueue.MessageCloner messageCloner
         0: .line 139
            aload 1 /* connection */
            invokeinterface org.glassfish.grizzly.Connection.getTransport:()Lorg/glassfish/grizzly/Transport;
            astore 6 /* transport */
        start local 6 // org.glassfish.grizzly.Transport transport
         1: .line 141
            aload 6 /* transport */
            aload 1 /* connection */
            invokeinterface org.glassfish.grizzly.Transport.getWriter:(Lorg/glassfish/grizzly/Connection;)Lorg/glassfish/grizzly/Writer;
            aload 1 /* connection */
            aload 2 /* dstAddress */
         2: .line 142
            aload 3 /* message */
            checkcast org.glassfish.grizzly.Buffer
            aload 4 /* completionHandler */
            aload 5 /* messageCloner */
         3: .line 141
            invokeinterface org.glassfish.grizzly.Writer.write:(Lorg/glassfish/grizzly/Connection;Ljava/lang/Object;Lorg/glassfish/grizzly/asyncqueue/WritableMessage;Lorg/glassfish/grizzly/CompletionHandler;Lorg/glassfish/grizzly/asyncqueue/MessageCloner;)V
         4: .line 143
            return
        end local 6 // org.glassfish.grizzly.Transport transport
        end local 5 // org.glassfish.grizzly.asyncqueue.MessageCloner messageCloner
        end local 4 // org.glassfish.grizzly.CompletionHandler completionHandler
        end local 3 // java.lang.Object message
        end local 2 // java.lang.Object dstAddress
        end local 1 // org.glassfish.grizzly.Connection connection
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lorg/glassfish/grizzly/StandaloneProcessor;
            0    5     1         connection  Lorg/glassfish/grizzly/Connection;
            0    5     2         dstAddress  Ljava/lang/Object;
            0    5     3            message  Ljava/lang/Object;
            0    5     4  completionHandler  Lorg/glassfish/grizzly/CompletionHandler;
            0    5     5      messageCloner  Lorg/glassfish/grizzly/asyncqueue/MessageCloner;
            1    5     6          transport  Lorg/glassfish/grizzly/Transport;
    MethodParameters:
                   Name  Flags
      connection         
      dstAddress         
      message            
      completionHandler  
      messageCloner      

  public void write(org.glassfish.grizzly.Connection, java.lang.Object, java.lang.Object, org.glassfish.grizzly.CompletionHandler, org.glassfish.grizzly.asyncqueue.PushBackHandler);
    descriptor: (Lorg/glassfish/grizzly/Connection;Ljava/lang/Object;Ljava/lang/Object;Lorg/glassfish/grizzly/CompletionHandler;Lorg/glassfish/grizzly/asyncqueue/PushBackHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=6
        start local 0 // org.glassfish.grizzly.StandaloneProcessor this
        start local 1 // org.glassfish.grizzly.Connection connection
        start local 2 // java.lang.Object dstAddress
        start local 3 // java.lang.Object message
        start local 4 // org.glassfish.grizzly.CompletionHandler completionHandler
        start local 5 // org.glassfish.grizzly.asyncqueue.PushBackHandler pushBackHandler
         0: .line 151
            aload 1 /* connection */
            invokeinterface org.glassfish.grizzly.Connection.getTransport:()Lorg/glassfish/grizzly/Transport;
            astore 6 /* transport */
        start local 6 // org.glassfish.grizzly.Transport transport
         1: .line 153
            aload 6 /* transport */
            aload 1 /* connection */
            invokeinterface org.glassfish.grizzly.Transport.getWriter:(Lorg/glassfish/grizzly/Connection;)Lorg/glassfish/grizzly/Writer;
            aload 1 /* connection */
            aload 2 /* dstAddress */
         2: .line 154
            aload 3 /* message */
            checkcast org.glassfish.grizzly.Buffer
            aload 4 /* completionHandler */
            aload 5 /* pushBackHandler */
         3: .line 153
            invokeinterface org.glassfish.grizzly.Writer.write:(Lorg/glassfish/grizzly/Connection;Ljava/lang/Object;Lorg/glassfish/grizzly/asyncqueue/WritableMessage;Lorg/glassfish/grizzly/CompletionHandler;Lorg/glassfish/grizzly/asyncqueue/PushBackHandler;)V
         4: .line 155
            return
        end local 6 // org.glassfish.grizzly.Transport transport
        end local 5 // org.glassfish.grizzly.asyncqueue.PushBackHandler pushBackHandler
        end local 4 // org.glassfish.grizzly.CompletionHandler completionHandler
        end local 3 // java.lang.Object message
        end local 2 // java.lang.Object dstAddress
        end local 1 // org.glassfish.grizzly.Connection connection
        end local 0 // org.glassfish.grizzly.StandaloneProcessor this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lorg/glassfish/grizzly/StandaloneProcessor;
            0    5     1         connection  Lorg/glassfish/grizzly/Connection;
            0    5     2         dstAddress  Ljava/lang/Object;
            0    5     3            message  Ljava/lang/Object;
            0    5     4  completionHandler  Lorg/glassfish/grizzly/CompletionHandler;
            0    5     5    pushBackHandler  Lorg/glassfish/grizzly/asyncqueue/PushBackHandler;
            1    5     6          transport  Lorg/glassfish/grizzly/Transport;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                   Name  Flags
      connection         
      dstAddress         
      message            
      completionHandler  
      pushBackHandler    
}
SourceFile: "StandaloneProcessor.java"
InnerClasses:
  public final AsyncResult = org.glassfish.grizzly.asyncqueue.AsyncQueue$AsyncResult of org.glassfish.grizzly.asyncqueue.AsyncQueue